hello. I have a problem with initiating an array for another movieclip. For example, a movieclip with an instance name of MC, and a variable number of type of number named varia, can be initiated by:
_root.mc.varia = 5;
Given that varia exists on that MC.
How do I do this for an array? I tried this on the MC:
var arr:Array;
and this on another movieclip:
_root.mc.arr.push(5);
when I traced arr[0] on the first movieclip, it was undefined. What do I do?