Wednesday, October 20, 2010

What is Google Page Rank?

PageRank is Google's way of deciding a page's importance. It matters because it is one of the factors that determines a page's ranking in the search results. It isn't the only factor that Google uses to rank pages, but it is an important one. My Google PageRank allows Webmasters to view their site's PageRank online. In addition, Webmasters can use the provided code from the My Google Page Rank tool to display their site's PageRank to their visitors.

Tuesday, October 19, 2010

Pause timeline or set Interval code for ActionScript 2 or 3

pause timeline using actionscript 2.0

stop();
setTimeout (
function()
{
play();
}, 1000);
 
 
 
and AS3 code below:
 
stop();
    var nInterval = setInterval(Play, 3000);
    function Play() {
    clearInterval(nInterval);
    gotoAndPlay(_currentframe+1);
    }

Sunday, October 03, 2010

What is Pen tool in Photoshop and Illustrator. look at the different variations and what they do.

The Pen tool is one of the most important items in your Photoshop and Illustrator. If you want to be a design master, you must first master the Pen tool. Let’s look at the different variations and what they do:

Pen Tool – The Pen tool Swiss army knife. All the following options are built right into the Pen tool and can be accessed using keyboard shortcuts.

Add Anchor Point Tool – This variation of the Pen tool adds additional points anywhere on a path. (Also accessible by hovering over a path)

Delete Anchor Point Tool – This variation of the Pen tool removes existing points from a path. (Also accessible by hovering over a point)

Convert Anchor Point Tool – This variation of the Pen tool creates bezier handles on a point to form a curve. (Also accessible by holding ALT – Illustrator only)

There’s also two other tools that are used alongside the Pen tool:

Path Selection Tool – Used to select a whole path, including all points and curves. (Also accessible by holding CMD – Photoshop only)

Direct Selection Tool – Used to select individual points or bezier handles.