Preloader

hi
is there some one that can show me how to build a preloader thankyou

:thumb:

check my footer :wink:

soryy did not find any preloaders there

Well then I don’t know what to tell you. The search for kirupa.com would return 3-4 in depth preloader tutorials and the search for kirupaforum.com would return 3000-4000 preloader tutorials. Perhaps you should look harder :wink:

go to flashkit.com, type ‘preloader’ in the search field.

try this very simple script: 3 frames in the timeline will do.

on frame 1:
put a dynamic field named “getPercent” so that you will the preloader’s progress.
[AS]
loadedBytes = _root.getBytesLoaded();
totalBytes = _root.getBytesTotal();
getPercent = loadedBytes/totalBytes;
if (_root.getBytesLoaded()== _root.getBytesTotal()) {
gotoAndPlay(3);
}[/AS]
frame 2:
[AS]gotoAndPlay(1);[/AS]
frame 3:
//this action is when preloading is done…

Hope it helps. It might not work. But at least it will give an idea.