actionscript question
actionscript question
Out of context: Reply #11
- Started
- Last post
- 14 Responses
- kingsteven0
var pages:Array = new Array("page1.swf", "page2.swf", "page3.swf");
var shuffle:Array = new Array();
while (pages.length > 0) {
shuffle.push(pages.splice(Math.f... 1));
}then just load them sequentially...