Load SWF inside SWF
Load SWF inside SWF
Out of context: Reply #1
- Started
- Last post
- 4 Responses
- 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);
}