Answered
Removing MovieClip Problems
I have a Movie Clip with a button (thumb picture) (btnX)
which opens another Movie Clip (mc_window1*)(Large Picture), but
the button to remove the MC (Large Picture) doesn't work. I have
previously tried it in other files and it has worked well. I don't
know why this is happening in this one. Is it because it's a MC
within a MC?
btnX. onRelease = function() {
var mc = attachMovie("mc_window1", "v", 2)
mc._x= 300
mc._y= 200
}
Button script:
on(release){
_root.v.removeMovieClip()
}
*mc_window1 it's linkaged
Thanks again!!
btnX. onRelease = function() {
var mc = attachMovie("mc_window1", "v", 2)
mc._x= 300
mc._y= 200
}
Button script:
on(release){
_root.v.removeMovieClip()
}
*mc_window1 it's linkaged
Thanks again!!