Answered
removeMovieClip
how do i get a MC to remove itself? seems like this should be
simple enough. i have a movie clip with a button within it. code on
the button:
on(release) {
removeMovieClip(this);
}
or this?:
on(release) {
this.removeMovieClip();
}
or this?:
on(release) {
_parent.removeMovieClip();
}
nothing like this appears to work. i do not want to use a _root command.
can someone help?
on(release) {
removeMovieClip(this);
}
or this?:
on(release) {
this.removeMovieClip();
}
or this?:
on(release) {
_parent.removeMovieClip();
}
nothing like this appears to work. i do not want to use a _root command.
can someone help?