[FONT=Times New Roman][SIZE=3]I want to load my swf external file into my main file via empty movie clip. I did everything correct. And for some reasons my external file doesn’t play inside my main file. It shows up, plays all the sounds but the buttons with pictures do not work – they don’t show the big pictures. But if I just play external.swf –everything works perfectly. Could anyone please tell me what I’m doing wrong?[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]Thank you in advance [/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]Here is the code I use in main file to load the extermal.swf:[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]on (release) {
this.createEmptyMovieClip(“empty”,99)
empty.loadMovie(“external.swf”,99);[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]}[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3][/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]Here is the code I use in the external.swf to load the pictures:[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]stop();[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]b12_btn.onRelease = function() { _level0.landscape_mc.gotoAndStop(1); }[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]fog_btn.onRelease = function() { _level0.landscape_mc.gotoAndStop(3); }[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]flagstaff_btn.onRelease = function() { _level0.landscape_mc.gotoAndStop(4); }[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]DC2_btn.onRelease = function() { _level0.landscape_mc.gotoAndStop(5); }
[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3][/SIZE][/FONT]