Search Results

1
vote
1answer
105 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 …
1
vote

How can I dynamically load a Movieclip in Flash CS4 and have it share information with a framework?

To load the the swf files you use the Loader class. Then to pass variables to the lo …
0
votes

How to connect these 3 programming languages?

I would recommend using amfPHP to get information from a MySQL database passed to Flash through php. It is simpler, faster and easier to use than using php to output the database result in xml. Bas …
0
votes

AS3: How to convert a Vector to an Array

There is a function called forEach which both Vector and Array has which you can use. Basically it calls a function for each element in the vector. This is how it works: var myVecto …
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 …