I have created a .fla in Flash professional with several rectangles. Each rectangle is a different color and is a separate movie clip. I then have a movie clip (RectContainer) with contains all the rectangles inside of it, and I have added 'AS Linkage' so I can create an instance of this container class in Flash builder (after I've exported as a .swc).
My question is this. What if I wanted to add a variable to each rectangle and how could I read this value from Flash builder.
For example, I want to add a string variable to the red rectangle with the word "red" , the blue rectangle with "blue" etc.
I then want to add listeners to the rectangles, so when they are clicked I can get the color string of the rectangle that was clicked.
for (var i:int = 0; i < rectContainer.numChildren; i++) {
rectContainer.getChildAt(i).addEventListener(MouseEvent.MOUSE_DOWN, fl_Click);
}
function fl_click(event:MouseEvent):void
{
event.currentTarget. ???
}

