I have made a site, and lots of "sub sites" outside my main page, that I just load by scripting:
on (release) {
loadMovie("Filmer.swf",_root.Ramma);
}
And I have inserted a preloader in the first frame in my main site, it goes like this:
onClipEvent (load) {
total = _root.getBytesTotal();
}
onClipEvent (enterFrame) {
loaded = _root.getBytesLoaded();
percent = int(loaded/total*100);
text = percent+"%";
gotoAndStop(percent);
if (loaded == total) {
_root.gotoAndPlay(2);
}
}
Can I make this load other swf's as well, so you dont have to load every single page at my site?
Lassjus