questions1 = new Array();
questions1[0] = “Hexagon”;
questions1[1] = “Para”;
menu1.onRelease = function():Void
{
var randomSelection = Math.floor((Math.random() * questions1.length));
q_txt.text = questions1[randomSelection];
questions1.splice(randomSelection, 1);
}
This code function well if I display the array texts to the dynamic textfield…but I would like to randomize the movieclips and call it from the library everytime I click a button. Please Help.