...In this tutorial you will learn how to create a simple preloader. This is great for your big projects that take awhile to load. This will give the person viewing your file a loading screen which will say how much % is done downloading. Step 1 : Setup frames...
... the X and Y axis in the property menu so they are the same. The 3rd frame will be for your image/sound or anything else. We will get to the 3rd frame a little bit later. Step 2 : Adding actionscript Click on frame 1 and then open the action panel. Copy the following code into the panel. percent = Math.floor(getBytesLoaded()/getBytesTotal()*100); myOutput.text = percent...