Hi,
I have a synthax question: is it possible to unload several external swf which are on different level by writing the folllowing:
on (rollOver) {
loadMovieNum(“one.swf”, 20);
unloadMovieNum(21,22,23,24);
thx
Mel*
Hi,
I have a synthax question: is it possible to unload several external swf which are on different level by writing the folllowing:
on (rollOver) {
loadMovieNum(“one.swf”, 20);
unloadMovieNum(21,22,23,24);
thx
Mel*
i don’t know, i’ve never tried it, i don’t think so though b/c you have to specify the level by typing - _level22 - . If it doesnt’ work, you will have to do a bunch of unloadMovie scripts one right after the other. Post your solution if you come up with one.
You can use a for loop:
for (var i = 21; i<=24; i++) {
unloadMovieNum(i);
}
:: Copyright KIRUPA 2024 //--