vijeshmehta
Programmer
My problem is that if I load a swf file into a level, it functions perfectly (executing actionscript). If I load the same swf file into an empty movie clip created at runtime, the swf file displays, but none of the actionscript in the imported swf executes.
(Error Code) =
Frame 1:
_root.createEmptyMovieClip("test",20);
Frame 2:
test.loadMovie("mainmenu.swf"
;
stop();
I don't get anything except the background on the mainmenu.swf
(Works when loaded into level)
Frame 1:
loadMovie("mainmenu.swf","_level1"
;
this functions fine. Is there something I need to know in order to load a swf into a MC and make it execute properly?
(Error Code) =
Frame 1:
_root.createEmptyMovieClip("test",20);
Frame 2:
test.loadMovie("mainmenu.swf"
stop();
I don't get anything except the background on the mainmenu.swf
(Works when loaded into level)
Frame 1:
loadMovie("mainmenu.swf","_level1"
this functions fine. Is there something I need to know in order to load a swf into a MC and make it execute properly?