Question
how to read movieClip container variables by attachmovie
I used a movieClip to store the attach movieclip, but How to get back the variable from that movieClip container,
such as a I set a array in the exiting movieClip
var m_click:Array = new Array();
for (var f=0; f<=this[mc_name+"_qty"]._totalframes-1; f++)
{ m_click = 0; }
for (var f=0; f<=this[mc_name+"_qty"]._totalframes-1; f++)
{ m_click
I want the attached movieClip "y_qty" with a button inside to get the m_click for changing each m_click[0]..m_click[1]..value, how to do it?
Thanks