Hi there,
does anyone know how to use a preloader to load a movie clip?? I know how to use it to load a frame and play the rest of a movie…but I need it to load an mc
Help!
You mean load an external swf?
On the main timeline …
[AS]
holder.loadMovie(“anything.swf”);
holder.stop();
holder.onEnterFrame = function(){
l = this.getBytesLoaded();
t = this.getBytesTotal();
if(l ==t){
play();
delete this.onEnterFrame
}
}
[/AS]