hi guys!
I wonder why the following code doesnt work using _level1.unloadMovie() nor even unloadMovie(_level1);
function checkSubMenu(checkLevel){
if (levelNo==checkLevel){
unloadSubMenu(levelNo);
}
}
function unloadSubMenu(unloadLevel){
//unloadMovie("_level1") was not working mabe a bug
// to overcome that I created a empty movie at the same level
_root.createEmptyMovieClip(“empty”,unloadLevel);
}
I could be doing something wrong but I cud not figure it out so I created an empty movie clip on the level where I want to remove the movie. Not the best way.
Any ideas