Execute Lightbox Scripts From Flash

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 …

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 …

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; } }