PDA

View Full Version : Simple attach/remove movie question


____
11-22-2002, 09:50 PM
Im just trying to get a grip on these actions

on (rollOver) {main.attachMovie("movie2", "movie3", 1);

}
The attach works. I just cant get the on remove action to work. What would be the corresponding remove action to that attach action?

snapple
11-22-2002, 11:18 PM
on (release) {

removeMovieClip ("_root.snapple.attachedsnapple");

}


Should do the trick

snapple :)

tg
11-25-2002, 02:16 PM
or:
movie3.removeMovieClip();

____
11-25-2002, 08:14 PM
So now I have on (rollOver) {main.attachMovie("movie2", "movie3", 1);

}
on (rollOut) {movie3.removeMovieClip();

}

And it still doesnt work, when I mouse out it just keeps playing. Any suggestions?

tg
11-25-2002, 10:26 PM
try:
main.movie3.removeMovieClip();
sorry bout that.