loadmovienum
loadmovienum
- Started
- Last post
- 3 Responses
- reigns
I'm loading seperate SWFs on levels. If I load a SWF at level 20 and I created a button [x] will the fscommand action work to close that SWF?
this.closewindow_btn.onRelease = function() {
fscommand("quit", true);
};
- blaw0
why not unloadMovieNum(20);
- jpolk0
are you posting from 2001?
- ItTango0
i agree. just unload the movie at a specific level.
on (release) {
unloadMovie(20);
}