I have a movie clip loaded on the stage.
The stage loops through a few clips so this one gets removed and added to the stage again and again by itself. How can I modify the contents of it on each loop iteration?
Can I add some event listener to it (or it's parent, which is...? stage?)
I already tried something like:
stage.addEventListener(Event.ADDED, Staged);
and the Staged function:
private function Staged (e:event):void
{
trace(e.prototype);
}
and the Staged() function gets fired a whole lot, but from it's parameter (the event passed) I can't find out which object it is or anything...