firegambler
Technical User
hi folks,
is there a way to unload all movies i loaded into a project with one click?
what I want to do is to create a website were every "site" is an extra swf-file which gets loaded into the main movie.
so when somebody clicks a button in the menu the new "site" is loaded into the film. therefore i have to unload every movie the user could have been viewing before (i.e. every point in the menu exept the one he just clicked). do i have to name every movie in the actionscript (even those which are not even currently loaded) to unload all or is there a way to do that with one command.
i'd like to have something like
on (release) {
unloadMovie (ALL);
loadMovieNum ("alexander.swf",1);
}
instead of
on (release) {
_level1.unloadMovie("tom"
;
_level1.unloadMovie("flo"
;
loadMovieNum("alexander.swf", 1);
}
thanks
firegambler
is there a way to unload all movies i loaded into a project with one click?
what I want to do is to create a website were every "site" is an extra swf-file which gets loaded into the main movie.
so when somebody clicks a button in the menu the new "site" is loaded into the film. therefore i have to unload every movie the user could have been viewing before (i.e. every point in the menu exept the one he just clicked). do i have to name every movie in the actionscript (even those which are not even currently loaded) to unload all or is there a way to do that with one command.
i'd like to have something like
on (release) {
unloadMovie (ALL);
loadMovieNum ("alexander.swf",1);
}
instead of
on (release) {
_level1.unloadMovie("tom"
_level1.unloadMovie("flo"
loadMovieNum("alexander.swf", 1);
}
thanks
firegambler