I have a function shuffling a array of numbers.
How can I have each number correspond to a movieclip?
Like if I have the number 4 comup first in my array, how can I have movieClip4 show up onto the screen?
Printable View
I have a function shuffling a array of numbers.
How can I have each number correspond to a movieclip?
Like if I have the number 4 comup first in my array, how can I have movieClip4 show up onto the screen?
import flash.utils.getDefinitionByName;
var myArray:Array=new Array(1,4,2,5);
var MyClass:Class=getDefinitionByName("movieClip"+myAr ray[1]) as Class;
var mc:MovieClip = new MyClass();
addChild(mc);