dunno
1
on (release) {
if ((movie==story) or (movie==main)) {
loadMovieNum (“main.swf”, 1);
movie = main;
} else if (movie==photo) {
unloadMovie ("/dropzone");
loadMovieNum (“main.swf”, 1);
}
}
i having a MD load at _root.dropzone
but i want other button wo unload it but it was not succes. PLEASE HELP~~
:*(
thanks
system
2
You don’t need to unload, as loading in a level will erase whatever is on that level. But your code looks strange.
on (release) {
if (movie=="story" || movie=="main") {
loadMovieNum ("main.swf", 1);
movie = "main";
} else if (movie=="photo") {
loadMovieNum ("main.swf", 1);
}
}
should be enough.
By the way, where do you live in Malaysia? I’ve spent some time there recently 
pom :phil: