I’m using the loadmovie action to load movies on my main timeline…i want to place a load bar on each movie…i used the same load bar that upaut taught me to do on a little tut posted in the forum(referred by jubba)…
i dont know but something tells me that the movie loaded can’t exceed the first frame…
is it or not?..and if it is…then how do i do that??? <img src=http://www.ezboard.com/intl/aenglish/images/emoticons/ohwell.gif ALT=":">
thanx a lot!
:eek:
the movie that loads in basically becomes a movie clip and it still has all its frames and will use its own actionscript, however, some of the script might need to be changed. With what you are doing, I don’t think it needs to be changed because the preloader doesn’t call for any outside interaction…i may be wrong though…
ok
this is what you’d do:
just make a preloader
total = _level0.getBytesTotal();
frames = _level0.getBytesLoaded();
if (frames == total){
_level0.play();
}
basically when you load the movie into the existing movie, it’s no longer in _root, you want it to preload _level0
make sense?
I think that might just confuse matters bOxg33k.
the loadMovie(); method loads into a movie clip, not into level0 or root.
cause when you loadMovie(“external.swf”, “/info”);
the preloader just loads in that movie and not the root level, why would you want it to check the bytes loaded for root, you want it to check the movie thats being loaded.