I am stuck. I have managed to make a button to create duplicates of an mc which are draggable and include an input text box, now need to be able to get rid of them!
the code on the button to duplicate is:
on (release) {
count++;
duplicateMovieClip (“nametag”, “newnametag”+count, count);
_root[“newnametag”+count]._x = 100;
_root[“newnametag”+count]._y = 50;
}
This works fine in creating the duplicate.
I tried creating a similar button with ‘removeMovieClip’ instead of ‘duplicate’ but won’t work. I also tried…on press
_root.nametag.newnametag._visble = false…to no avail
What am I doing wrong?