flash preloaders are easy peasy
![smile](https://antionline.com/images/smilies/smile.png)
well once you know how heres a quick run through in how to create one......
1. name the first frame of your loader scene start
2. create a keyframe at about say frame 10 and name it loaded
3. create another keyframe after loaded and name it wait
4. create a final keyframe called next
ok now heres the action script for each scene
loaded
ifFrameLoaded ("lastScene", "LastFrame") {
gotoAndPlay ("next");
}
wait
ifFrameLoaded (1) {
gotoAndPlay ("start");
}
next
ifFrameLoaded (1) {
gotoAndPlay ("NextScene", 1);
}
Ok easy so far?? the bits in bold you'll have to change to your scene/frame names
but you don't want just a blank screen so add another layer and make a small animation to play between frames 1 & 10
I'll include a sample .fla for you to look at
to save a bit of server space plz visit the original post for the .fla thanx ![smile](https://antionline.com/images/smilies/smile.png)
- hope it helps