Step 18
Go back on the main scene (Scene1), take the Selection Tool (V), select the "preloader", open the Action Script Panel (F9), and paste this script:
onClipEvent (load) {
total = _root.getBytesTotal();
}
onClipEvent (enterFrame) {
loaded = _root.getBytesLoaded();
percent = int(loaded/total*100);
perc1 = ""+percent+"%";
gotoAndStop(percent);
if (loaded == total) {
_root.gotoAndPlay(2);
}
}
Step 19
Click on frame 1, and in A.S.Panel type:
stop();
Step 20
Create a new layer and name it picture.

Step 21
Click on frame 2 and press F6 key. After that, import any picture on stage (Ctrl+R). Then, go back on frame 2, open again the A.S.Panel (F9), and type this:
stop();
Test Your Movie (Ctrl+Enter).
We're done!
Have a nice day!
Download source file (.fla)