Hi guys, i was wondering how can i loop trough my array.
If i have an array like this:
var myArr:Array = new Array(“zero”, “one”, “two”, “three”, “four”)
And **each click **i want to have the array like this:
(“zero”, “one”, “two”, “three”, “four”)
(“one”, “two”, “three”, “four”, “zero”)
(“two”, “three”, “four”, “zero”, “one”)
thnx in advanced.