Question
RemoveMovieClip?
I have this mc that I created with
_root.attachMovie("boom", "blow"+boomNum, boomNum);
then later on I have.
delBoomF();
delBoomi = setInterval(delBoomF, 150);
function delBoomF() {
_root.blow301.removeMovieClip;
}
Problem is that I cannot get it to remove that movie clip instance and I know I have the right target.
Any ideas as to what Im doing wrong?
_root.attachMovie("boom", "blow"+boomNum, boomNum);
then later on I have.
delBoomF();
delBoomi = setInterval(delBoomF, 150);
function delBoomF() {
_root.blow301.removeMovieClip;
}
Problem is that I cannot get it to remove that movie clip instance and I know I have the right target.
Any ideas as to what Im doing wrong?