Load SWF inside SWF
Load SWF inside SWF
- Started
- Last post
- 4 Responses
- Delvetica
Does anyone has something simpler that this one?
Thanks in Advanced!!!!
on (release) {
loadMovieNum("disp-c onnections-p3.swf", 10);
loadMovieNum("preloa der.swf", 11);
imgnum=026;
}
- unfittoprint0
make the preloader part of your library (it will be immediately available). Name its linkage identifier something like 'loader'. Its code should target the loaded movie, something like this._parent.loadedMC.
Then put a button on the stage, name it trigger and then use in an action layer the following:
trigger.onRelease= function(){
createEmptyMovieClip("loadedMC", 10);
loadedMC.loadMovie("disp-c onnections-p3.swf");
attachMovie("loader","loader", 20);
}
- ********0
ahh nice Unfit, I'm gonna steal that.
- Delvetica0
Thanks Folks