I have this little .as code
public class Circle extends MovieClip
{
private var obiects:Array = new Array();
public function circle()
{
var p = new Object();
p.obj = makeCircle();
p.description = " ugly circle" ;
obiects.push(p);
}
}
In the main .fla I generate some circles displayed on the stage with different descriptions and added a listener for each one of them. How can I see the description for any particular circle when I click on it ? …anyone has any idea? ’
Thanks for the help.