Search Results

1
vote
1answer
103 views

Alternatives to create swf files (which has external content loaded into them) dynamically?

I'm about to start a project where there will be a Flash application where the visitor customizes a profile with externally loaded images and texts. Then the visitor needs to be able to download th …
0
votes

In ActionScript 3, how can I pass the current value of an array in a loop to an event listener

Here's the fastest and best structured way to do it (imo): var gospels:Array = ["john", "mark", "matthew", "paul"]; for(var book:String in gospels){ //For is faster than for each …