Music Spectrum

Step 1 : Document Setup

Open Adobe Flash and Modify the Document Properties.
Modify > Document
Size: 550 x 400
Frame Rate: 12 fps
Background: Black

Step 2 : Creating a Single Audio Bar

This effect is achieved using ActionScript and one MovieClip. So let’s start by creating an individual audio bar.

Select the Rectangle Tool, Rectangle Tool, and change to color properties to:

Color Properties

Draw any size rectangle on the Stage, open the info pane and set width and height to 12 & 5:

Info Pane

With the shape selected, convert it into a MovieClip symbol.
Modify > Convert to Symbol
Name: one_bar
Registration: bottom, left
Export for ActionScript: checked
Linkage Identifier: one_bar

Delete the MovieClip from the Stage. It will remain in the Library waiting for us to call it with Actionscript.

Step 3 : Create Analyzer Border & Container MovieClip

In this step, we will create the surrounding border which will also serve as a containing MovieClip for the ActionScript.

Select the Rectangle Tool again, Rectangle Tool, change the color properties to:

Color Properties

Draw any size rectangle on the Stage, open the info pane and set width and height to 277 & 124:

Border Dimensions

With the shape selected, convert it into a MovieClip symbol.
Modify > Convert to Symbol
Name: spectrum_analyzer
Registration: bottom, left

Step 4 : Coding the Spectrum Analyzer

It’s time to code the Analyzer.

Double Click the MovieClip on Stage. Select Frame 1 on the Timeline and open the ActionScript Window.
Window > Actions

Copy & Paste the following code: ( All explained in my comments )

===========

    spacing = 1; // Spacing between bars.

    margin = 3; // Shift all bars to right.

    tot_bars = 21; // Total Spectrum Bars.

    max_height = 20; // Maximum height of line in bars.

    // ———————————-

    // The spectrum definitions.

    // ———————————-

    // low = lowest the line(s) will go.

    // high = highest the line(s) will go.

    // n = number of lines affected.

    // Make sure the sum of your n’s = tot_bars.

    // Example Rock Spectrum.

    rock_spectrum = [

    {low:5,high:20,n:2},

    {low:12,high:20,n:8},

    {low:3,high:15,n:3},

    {low:7,high:15,n:3},

    {low:5,high:10,n:3},

    {low:0,high:5,n:2}

    ];

    // Start the spectrum analyzer.

    analyzer(rock_spectrum);

    // —————————-

    // Simulated Spectrum Analyzer

    // —————————-

    // spectrum : Array Spectrum Definition.

    // isOn : Boolean – Turn on or off Analyzer

    function analyzer(spectrum){

    // Index of first bar range, first {low:#, high:#, n:#}

    var curRange = 0;

    // Number of lines the current range will affect.

    var numLines = spectrum[curRange].n;

    // Generate the vertical bar lines.

    for(var i = 0; i ){

    // Attach a one_bar movieclip.

    var bar = this.attachMovie(‘one_bar’,‘bar’+i,(i+1));

    // Position the movieclip based on its width,

    // spacing and margin specified in our variables.

    bar._x = i * (bar._width + spacing) + margin;

    // Set the bar’s range to the current range.

    bar.r = spectrum[curRange];

    // Animate the bar vertically.

    bar.onEnterFrame = function(){

    // Choose a random number between the range we specified.

    var h = Math.round(Math.random() * (this.r.highthis.r.low) + this.r.low);

    // Using the random height, we generate more bars accordingly.

    for(var i = 0; i ){

    // Attach another bar.

    var bar = this.attachMovie(‘one_bar’,‘bar’+i,(i+1));

    // Put it above the last bar.

    bar._y -= i * (bar._height + spacing);

    // Immediatly start fading the bar.

    bar.onEnterFrame = function(){

    this._alpha -= 20;

    // If completely faded, remove the MovieClip.

    if(this._alpha == 0) this.removeMovieClip();

    }

    }

    }

    // Countdown the number of lines we setup.

    numLines–;

    // If we reach 0, it is time to get the next range from our spectrum array.

    if(numLines == 0) curRange++, numLines = spectrum[curRange].n;;

    }

    }

    // ————————–

    // Turning off the Analyzer.

    // ————————–

    function turnOff(){

    // Loop through the number of vertical lines.

    for(var i = 0; i ){

    var bar = this['bar'+i];

    // Stop the animation.

    delete bar.onEnterFrame;

    // Loop through the number of bars on the line, except first one.

    for(var j = 1; j ){

    // Remove the bars.

    var b = bar['bar'+j].removeMovieClip();

    }

    }

    }

Star Animation

[1]-First of all Open New Document of Custom size,Height & Width 325×450 pixels,Resolution 72 & Mode RGB Color

Pun392-Star-Animation-Photoshop-Effect1

[2]-Now Open New Layer & then select Custom Shape Tool & use the following shape & settings

Pun392-Star-Animation-Photoshop-Effect2

[3]-Now create the following Shape with the help of Custom Shape & then select Pen Tool,click select Make selection

Pun392-Star-Animation-Photoshop-Effect3

[4]-Now use the following settings in Make Selection

Pun392-Star-Animation-Photoshop-Effect4

[5]-Now your image should look like as shown below

Pun392-Star-Animation-Photoshop-Effect5

[6]-Now fill the selection with any color & then go to Blending Options,select Gradient Overlay & use the following settings
Photoshop Technique-How to use the Gradient Overlay features

Pun392-Star-Animation-Photoshop-Effect6

Pun392-Star-Animation-Photoshop-Effect7

[7]-Now your image should look like as shown below

Pun392-Star-Animation-Photoshop-Effect8

[8]-Now make the Duplicate layer (this layer shoud below original Layer) with the help of Ctrl+J & then adjust with the
help of Move Tool

Pun392-Star-Animation-Photoshop-Effect9

[9]-Now go to Blending Options with the help of Click on following Button which is indicating by Hand sign

Pun392-Star-Animation-Photoshop-Effect10

[10]-Now select Drop Shadow & use the following settings

Pun392-Star-Animation-Photoshop-Effect11

[11]-Now select Gradient Overlay & use the following settings
Photoshop Technique-How to use the Gradient Overlay features

Pun392-Star-Animation-Photoshop-Effect12

Pun392-Star-Animation-Photoshop-Effect13

[12]-Now your image should look like as shown below

Pun392-Star-Animation-Photoshop-Effect14

[13]-Now create the following selection with the help of Rectangular Marquee Tool with hold shift

Pun392-Star-Animation-Photoshop-Effect15

[14]-Now fill the selection with any color & then your image should look like as shown below

Pun392-Star-Animation-Photoshop-Effect16

[15]-Now Go to WINDOW>ANIMATION & then create 2 Duplicate Frames with the help of 2 times click on following Button which is
indicating by hand sign

Pun392-Star-Animation-Photoshop-Effect17

[16]-Now select Frame2 & then one by one select all layers & create the following adjustment with the help of Move Tool

Pun392-Star-Animation-Photoshop-Effect18

[17]-Now select Frame3

Pun392-Star-Animation-Photoshop-Effect19

[18]-Now create the following adjustment with the help of Move Tool

Pun392-Star-Animation-Photoshop-Effect20

[19]-Now use the following Time settings of each frames & then Play the Animation with the help of Click on following Button
which is indicating by Hand sign

Pun392-Star-Animation-Photoshop-Effect21

[20]-Now press Alt+Shift+Ctrl+S & then click on save

Pun392-Star-Animation-Photoshop-Effect22

[21]-Now save your image as save Optamized as.. & use the following settings

Pun392-Star-Animation-Photoshop-Effect23

Zebra Puzzle

1.    There are five houses.
2.    The Englishman lives in the red house.
3.    The Spaniard owns the dog.
4.    Coffee is drunk in the green house.
5.    The Ukrainian drinks tea.
6.    The green house is immediately to the right of the ivory house.
7.    The Old Gold smoker owns snails.
8.    Kools are smoked in the yellow house.
9.    Milk is drunk in the middle house.
10.    The Norwegian lives in the first house.
11.    The man who smokes Chesterfields lives in the house next to the man with the fox.
12.    Kools are smoked in the house next to the house where the horse is kept.
13.    The Lucky Strike smoker drinks orange juice.
14.    The Japanese smokes Parliaments.
15.    The Norwegian lives next to the blue house.
Now, who drinks water? Who owns the zebra?
In the interest of clarity, it must be added that each of the five houses is painted a different color, and their inhabitants are of different national extractions, own different pets, drink different beverages and smoke different brands of American cigarettes. In statement 6, right refers to the reader’s right.

IF YOU CAN’T ANSWER CLICK HERE !!!

Direct x 10.1

DirectX 10DirectX 10.1 will be the last and final update to the DirectX 10 application programming interface (API). The DirectX 10 will be exist in two versions only, 10.0 and 10.1 only, said Richard Huddy, worldwide developer relations manager of AMDÂ’s graphics product group at a conference recently. The end of DirectX 10 means that Microsoft will start focusing on DirectX 11 after the DirectX 10.1 update is released. Meanwhile, the developers of graphics processing units (GPUs) will not need to add anymore new functionality to their products and will therefore have to focus on performance, rather than on innovation of functionality.

However, Microsoft encourages graphics companies like ATI and NVIDIA to keep on focusing improve the DirectX 10 performance rather than adding more features for the next few years, at least until the launch of DirectX 11. This could potentially pave the way for NVIDIA and ATI to work on multi-GPU graphics cards without the need to keep adding functionality.

Meanwhile. the end of DirectX 10 development has increased uncertainty whether ATI, graphics product group of AMD, and Nvidia Corp will change their DirectX 10/10.1 architectures going forward, or will rely on making large chips using thinner process technologies with higher amount of execution units as well as improving multi-GPU technologies.

Beside that, The DirectX 10.1 will be featured in Microsoft Windows Vista service pack 1, which is due to release on in Year 2008. Plus more, Microsoft  also release several DirectX9 shader models, including versions 2.0, 2.0a, 2.0b and 3.0 for DirectX 9 version.

Via XBitLabs

What is blog ?

So what is a Blog anyway?

It’s a good question to ask at the beginning of a Blogging for Beginners Series as it is a question I am asked every week.

There are a number of ways I could answer this question ranging from the broad to the highly technical.

Here are a few definitions from other much wiser people on the ‘what is a blog?’ question to get us started (and once you’ve seen what they have to say on the topic I’ll share my own thoughts):

‘A weblog is a hierarchy of text, images, media objects and data, arranged chronologically, that can be viewed in an HTML browser.’ Source

‘A frequent, chronological publication of personal thoughts and Web links.’ Source

‘From “Web log.” A blog is basically a journal that is available on the web. The activity of updating a blog is “blogging” and someone who keeps a blog is a “blogger.”‘ Source

‘A weblog is kind of a continual tour, with a human guide who you get to know. There are many guides to choose from, each develops an audience, and there’s also comraderie and politics between the people who run weblogs, they point to each other, in all kinds of structures, graphs, loops, etc.’ Source

‘A blog is basically a journal that is available on the web. The activity of updating a blog is “blogging” and someone who keeps a blog is a “blogger.” Blogs are typically updated daily using software that allows people with little or no technical background to update and maintain the blog. Postings on a blog are almost always arranged in cronological order with the most recent additions featured most prominantly.’ Source

‘A blog is a website in which items are posted on a regular basis and displayed in reverse chronological order. The term blog is a shortened form of weblog or web log. Authoring a blog, maintaining a blog or adding an article to an existing blog is called “blogging”. Individual articles on a blog are called “blog posts,” “posts” or “entries”. A person who posts these entries is called a “blogger”. A blog comprises text, hypertext, images, and links (to other web pages and to video, audio and other files). Blogs use a conversational style of documentation. Often blogs focus on a particular “area of interest”, such as Washington, D.C.’s political goings-on. Some blogs discuss personal experiences.’ Source.

Blogging Tips for Beginners

Blogging BasicsWelcome to my Blogging Tips for Beginners Guide.

On the page below you’ll find links to a series of posts that I’ve written with beginner bloggers (and ‘Pre’ Bloggers in mind. It unpacks the basics of blogging and a lot of the decisions and strategies that you’ll want to consider when setting up and starting a blog.

Before I start – let me point you to an excellent series of videos by Jon Symons which are ideal for beginner bloggers wanting to learn how to register a domain name, set up hosting and set up a WordPress blog on it. They are aimed at the very beginner and run through some of the technical aspects of setting up a blog. The $15 cost of the videos is well worth it in my opinion.

How do bloggers make money from blogs?

How-Bloggers-Make-MoneyI’ve been reflecting this week about the amazing diversity of opportunities that are opening up for bloggers to make money from blogging.

I’ve long advised that bloggers seeking to make money from blogging spread their interests across multiple revenue streams so as not to put all their eggs in one basket.

The wonderful thing is that this is becoming easier and easier to do 2005 has seen many options opening up. I thought I’d take a look at some of the methods that bloggers are currently using to make money through blogs.

Income Streams for Bloggers – How to Make Money Blogging

Advertising Programs – Perhaps the most obvious changes in the past few months have been with the addition of a variety of viable advertising options for bloggers looking to make money from their blogs. The most common way bloggers seem to earn money online is via the contextual ad program from Google – Adsense. A more recent addition that many are using successfully are Chitika’s eMiniMalls and WidgetBucks, Text Link Ads.

Azoogle Ads, Intelli Txt, DoubleClick, Tribal Fusion, Adbrite, Clicksor, AdHearUs, Kanoodle, Pheedo, TextAds, Bidvertiser, Fastclick and Value Click (to name just some of the options) and there is a smorgasbord of options. Of course there is more to come with MSN Adcenter and YPN both in beta testing and with a variety of other advertising system currently in development (YPN is only available to US publishers).

Lastly there’s BlogAds – one of the first blog specific ad networks.

RSS Advertising – The past 12 months have seen some advances in RSS Advertising also. I’m yet to hear of any bloggers making big money blogging through it to this point – but as improvements are made to the ad programs exploring this I’m sure we’ll start to see examples of it being profitable.

Sponsorship – In addition to the array of advertising programs that are available to join there is a growing awareness in the business of the value and opportunity that exists for them to advertise directly on blogs. I’m hearing more and more examples of this and have been fortunately to have a couple of ad campaigns of my own in the past month – one with Adobe a couple of weeks ago and another just completed with Ricoh for a new digicam over at my Digital Camera Blog. These are not isolated cases – as I say I know of many blogs exploring sponsorship with advertisers at present and suspect we’ll see more of it in the year ahead. Sponsorship is also happening on a post by post basis with some bloggers being paid to write on certain topics by companies – either in one off or a regular fashion – and they are able to make big money from their blogs doing so.

Affiliate Programs – There are larger affiliate programs like Amazon, Linkshare, Clickbank and Commission Junction but also literally thousands of others from the large to the very small.

Digital Assets – Increasing numbers of bloggers have been developing other digital assets to support and add revenue streams to their blogs. By this I mean that I’m increasingly seeing e-books, courses and tele-seminars being run by bloggers. My recent foray into this with the first series of the six figure blogging course that Andy and I ran a few weeks ago and have just released the study version of. This type of activity will only increase in future – in fact this week I’ve seen numerous examples of bloggers running courses.

Blog Network Opportunities – with the rise in popularity of Blog Networks – bloggers are also being presented with more places to earn an income from their blogging – by writing for and with others. While it might be difficult to get a writing gig with one of the bigger networks – there are plenty who are always asking for new bloggers to join and who are willing to pay bloggers using a variety of payment models. While there are distinct advantages of blogging for yourself – blogging for an established network who will handle a lot of the set up/promotion/admin/SEO etc has it’s advantages also. More and more bloggers are combining writing for themselves on their own blogs with taking on blog network blogs as additional income streams.

Business Blog Writing Opportunities – as blogging has risen in it’s profile as a medium more and more businesses are starting blogs. Many of these companies have internal staff take on blogging duties – but an increasing number of them are hiring specialist bloggers to come on and run their blogs. I know of a number of bloggers who in the past month or two have been approached for such paid work. Check out Bloggers for Hire if you’re looking for this type of work.

Non Blogging Writing Opportunities – Also becoming more common are bloggers being hired to write in non blogging mediums. Manolo’s recent coup of a column in the Washington Post is just one example of this as bloggers are increasingly being approached to write for newspapers, magazines and other non blog websites. Along side this is the rise of bloggers as published book authors – this is to the extent that one blogger I spoke with this week complained to me that they were one of the few bloggers than they knew who didn’t have a book deal!

Donations – Tip Jars and donation buttons have been a part of blogging for years now but this last year saw a number of bloggers go full time after fund raising drives. Perhaps the most high profile of these was Jason Kottke of kottke.org who through the generosity of his readership was able to quit his job and become a full time blogger.

Flipping Blogs – Also more common in 2005 was the practice of ‘Blog Flipping’ – or selling of blogs. This has happened both on an individual blog level (I can think of about 20 blogs that sold this year) but also on a network level (the most obvious of these being the 8 figure sale of Weblogs Inc to AOL).

Merchandising – My recent attempt to sell ProBlogger.net T-shirts wasn’t a raging success, but it is an example of how an increasing number of bloggers are attempting to make a few extra dollars from their blogs by selling branded products through programs like Cafepress. While I didn’t have a lot of success with merchandising – quite a few larger blogs are seeing significant sales – especially blogs with a cult following. I’m not at liberty to discuss details – but I know of one largish blog which will see sales over $20,000 in merchandise for the calendar year of 2005.

Consulting and Speaking – While it has been popular for established consultants to add blogs to their businesses we’re also starting to see bloggers with no consulting background able to make money by charging readers for their time in consulting scenarios BECAUSE of the profile that their blogs have built them. Blogging has the ability to establish people as experts on niche topics and we all know the value of being perceived as an expert. I spoke to one blogger last month who charges himself out at over $200 an hour for speaking and consulting work – his area of expertise was something that he knew little about 18 months ago – but through his blog he’s become a leader in his field and a minor celebrity in his industry.

As time rolls on there are more and more ways that bloggers make money from their blogs opening up. Feel free to suggest your own ideas and experiences in comments below.

Imagine !!!

//www.getfirepow.com/eco-laptop.jpg” cannot be displayed, because it contains errors.

Opera Mini: Mobile Java Web Browser For Free

Good things are rarely free of charge but for the time being Opera Mini is available for free WAP download at http://mini.opera.com (apart from data charges).

Opera Mini can compress standard web pages by up to 80% using Small Screen Rendering to reformat the content. Naturally this speeds the surfing time and can reduce your data charges.

"With Opera Mini most people can start surfing the Web with the mobile phone they have today," from Jon S. von Tetzchner, CEO, Opera Software.

"We are proud to be the first to offer full, mobile Web browsing to the majority of the world’s mobile phone users," he added.

Opera Mobile has been around for a while but it does cost, at least Opera Mini is free. Opera have 100 Linux servers on hand to cope with the expected leap in traffic. We managed to download the software with ease but pages were timing out when we tried to access them. The overall graphics and setup is very nice and is a excellent alternative to boring WAP text pages.

The left image shows the display on more basic MIDP 1.0 handsets (Nokia 3510i etc) and the right image corresponds to MIDP 2.0 handsets like the Series 60 Nokia’s and the new Sony Ericsson’s.

Full details on the Opera website.

Introducing Nokia’s new 6555

You’ll never guess what it looks like when opened…

Nokia today announced a new 3G mobile phone that pairs original design and quality workmanship with outstanding features. The Nokia 6555 meets the desire for aesthetic appeal with an external analogue clock echoing the timeless elegance of high-end luxury. The Nokia 6555 is the first WCDMA phone with a smooth-back fold design with recessed hinge creating a seamless line when open. The phone’s gentle curve ensures a smooth and ergonomic user experience. The Nokia 6555 is an accessible option for discerning consumers. The Nokia 6555 will be available within the next month at an estimated retail price of approximately ???????200 before subsidies or taxes.

Adding to its attraction, the Nokia 6555 features a QVGA 16 million colour internal display – twice as many colours as the human eye can see – for a brilliant, crisp resolution on a large 240×320 screen, making it perfect for viewing photos and videos. The camera featuring a 6x zoom gives even greater versatility and full screen portrait viewfinder so you can be sure you get the right picture every time. The self-portrait function on the camera and video sharing ability ensures that special moments are easily shared with family and friends.

"Mobile-savvy consumers expect superior quality and design. We understood that need, and so created the the Nokia 6555. The Nokia 6555 is a sophisticated accessory delivering the outstanding features that you expect from Nokia," said Markku Suomi, Product Group Director, Mobile Phones, Nokia.

From the thin, narrow form factor with smooth lines to the 30MB user memory (with capacity for microSD expandable memory) and Bluetooth wireless connectivity, the Nokia 6555 sets the standard in its class.

Key features:
- Original smooth-back design
- Elegant external analog timepiece display
- Brilliant 16 million color display
- Video sharing
- WCDMA and quadband GSM functionality

« Older entries