Execute Lightbox Scripts From Flash: Part Deux Since the first thread showing you how to execute Lightbox scripts from Flash was such a big hit, I decided to write another showing you how to gain even more functionality in this regard. Tonight I will be showing you how to initiate a Lightbox containing a Flash …
Category Archives: Flash
Flash music player – Remember Stop – Start
Flash player with SharedObject
flash URL Encoding: Reading special characters from a text file
URL Encoding: Reading special characters from a text file One common technique used to load variables in Macromedia Flash is reading the data from a text file on the server or CD. This works well in most situations. However, there are certain characters that cannot be read directly from text. Entering these characters …
Continue reading “flash URL Encoding: Reading special characters from a text file”
flash banners awards
Two companies that do great creatives are tangozebra (http://www.tangozebra.com) and gluelondon (http://www.gluelondon.com), im not sure about an award site but all of their work is the best i’ve ever seen.
Flash convert String To Number
var myhe:Number=parseInt(mystring);
Flash countdown preloader
this.onEnterFrame = function() { var amount:Number = this.getBytesLoaded() / this.getBytesTotal() *100; loader.bar._xscale = amount; loader.loadText.text = 100 – Math.floor(Math.round(amount)/1)+”%”; if(amount < 85){ loader.alphaTo(0,2,"easeOutSine",0); } if(amount == 100) { gotoAndPlay("fadeout"); delete this.onEnterFrame; } }