Went Over 16000 Only Just Realised, Need To Call External Swf And Control
Basically i have made an 18000 frame flash application and need to call on a second swf i have made to split it up.
I am not really sure how to do this, i have put an empty movie clip in a scene in the main movie.
I would like the external swf preloaded into this movie clip and it also has two different frame labels which i would like called upon from buttons in the main movie.
What i would like to know is how i could preload the external swf into the movie clip in the scene in the main movie, using my current preloader for the main movie:
stop();
var bt = _root.getBytesTotal();
kbt.text = Math.round(bt/1000);
_root.onEnterFrame = function () {
var bl = _root.getBytesLoaded();
var pr = bl/bt*100;
kbl.text = Math.round(bl/1000);
prl.text = Math.floor(pr)+"%";
bar_mc._xscale = pr;
if (pr == 100) {
delete this.onEnterFrame;
gotoAndPlay("Intro", 1);
}
}
gotoAndPlay(1)
and I would also like to know how to call this loaded clip in a scene from a button in another scene.
I hope this isn't too confusing, i have looked all over the forum but i just find part answers that don't really help me.
Cheers
CZ