Question
Removing a MovieClip by Clicking
I want to Remove a Movie Clip loaded from an Array by just Clicking it.
Here is how I loaded them
function load1(Event:MouseEvent):void
{
addChild(notes[0]);
notes[0].x = 100;
notes[0].y = 100;
}
I have three Movie Clips in this Array which are loaded on a condition.
Once one of the MovieClip is on the Screen , I want to remove it by just clicking anywhere on this Movie Clip , How can I do this ?
