frozenpeas
Technical User
I have an swf embedded in an HTML page that acts as a shell. I want it to load other swfs into levels 2 - 6.
Nothing is really happening. It is fine with one swf. But when I try to use the shell to load up other ones, nothing happens. It's just blank. The 'showmenu' command is ignored. I've disabled the right-click 'Print' option and that is working properly.
What am I missing?
The shell swf contains one frame and two layers:
Layer 1 (works fine):
Layer 2 (doesn't work):
Thanks.
Nothing is really happening. It is fine with one swf. But when I try to use the shell to load up other ones, nothing happens. It's just blank. The 'showmenu' command is ignored. I've disabled the right-click 'Print' option and that is working properly.
What am I missing?
The shell swf contains one frame and two layers:
Layer 1 (works fine):
Code:
!#p
Layer 2 (doesn't work):
Code:
fscommand ("showmenu", "false");
loadMovieNum ("cursor.swf", 6);
loadMovieNum ("menu_main.swf", 5);
loadMovieNum ("menu_config.swf", 4);
loadMovieNum ("borders.swf", 3);
loadMovieNum ("home.swf", 2);
Thanks.