PDA

View Full Version : How do i do this ?


the flashsifu
09-07-2002, 08:20 PM
i want to load swf into the main movie. the main movie and swf are the exact dimension witdth and heighth. i have include two jpgs to illustrate my point. are there any tutorials/tips to show me how to complete this task?

all the help is much appreciated.

Jesse
09-08-2002, 01:21 AM
In the main movie, when you want to load the other content use:
loadMovieNum("subMovie.swf",1);
This will load in a movie called subMovie.swf above the current movie. Later on you can use:
unloadMovieNum(1);
To unload it.