Difference between revisions of "Flash"

From Wikicliki
Jump to: navigation, search
(Flash Banners)
Line 3: Line 3:
 
== Flash Banners ==
 
== Flash Banners ==
  
Standard Flash Banner Sizes:<br>
+
Standardised Flash Banner Sizes:<br>
 
250 x 250 Square<br>
 
250 x 250 Square<br>
 
200 x 200 Small Square<br>
 
200 x 200 Small Square<br>

Revision as of 16:49, 19 May 2008

it is sad but i only have limited vegetable powers of Macromedia Flash (now known as Adobe Flash), so i am slowly figuring it out while making Flash Banners. useful flash notes go here.

Flash Banners

Standardised Flash Banner Sizes:
250 x 250 Square
200 x 200 Small Square
468 x 60 Banner
728 x 90 Leaderboard
300 x 250 Inline Rectangle
335 x 280 Large Rectangle
120 x 600 Skyscraper
160 x 600 Wide Skyscraper

I reckon the three most important sizes are: Inline Rectangle, Banner, and Skyscraper.

Actionscripted Tweening

Preloader

stop();
onEnterFrame = function(){
	if (_root.getBytesLoaded() == _root.getBytesTotal()){
		delete onEnterFrame;
		play();
	}
}

Clicktag

For Google:

on (release) {
if (clickTAG.substr(0,5) == "http:") {
getURL(clickTAG, "_blank");
}
}

For others:

on (release) {
getURL(clickTAG, "_blank");
}

Reducing File Size

  • Compress images in photoshop before adding them to your flash library.
  • Save duplicated objects as movieclips and reinsert them as iterations of the same mc.
  • Shorten the length of loops.