loading ext mc's
loading ext mc's
- Started
- Last post
- 3 Responses
- ufreq
I'm wanting to load a series of external movie clips into my main movie but I don't want each movie to load until the previous one has been fully loaded in.
I've tried setting variables in various different ways but I am struggling. Anyone had any experience with this?
Basicaaly I am trying to re-create the same method as that used in the photography section of http://www.andyfoulds.co.uk
Any help appreciated.
- ufreq0
bump anyone?
- lostnation0
pseudo code:
var mcs=['clip1.swf','clip2.swf', 'clip3.swf'];
this.loadIt=function(i){
this.cage_mc.onLoad=function(){
i<mcs.length ? this._parent.loadIt(i++) : null;
}
this.cage_mc.loadMovie(this._par...
var mc=this.cage_mc;
}
this.loadIt(0);
- ********0
and this would go into the base/root movie am I correct here?