Ask a Question related to Macromedia Flash, Design and Development.
-
GoldenBoy #1
Dynamique array in flash ?
hello,i am student in Avignon,France and i I know how to make a
dynamique array in php but i don't know if it is possible in flash and i
don't know how to make it? If someone can help me .......
thx
GoldenBoy Guest
-
Send an array from Flash 8 to PHP
Hi guys. I am using flash 8 and actionscript 2 I have created an array in flash to send to php using getURL and POST. i.e. on (release) { var... -
Passing Multi Dimension Array to CFC from Flash
Passing a single dimension array works just fine, but is there a way to pass a multi dimension array? Your thoughts/help would be greatly... -
loop over flash array in cfc..
hi. i'm passing a simple array from flash to a cfc and trying to understand how to loop over it using an index loop to make my sql inserts. i... -
XML to flash array
So I'm getting data from an XML file which is automatically generated by an asp.net page. I need to load the info into an array of simple objects... -
Array from ASP to Flash?
I'm trying to get the value of variables from an ASP page where the variable name is created dynamically in the ASP page based on the number of... -
Igor Cuckovic #2
Re: Dynamique array in flash ?
"GoldenBoy" <golden_boy@netcourrier.com> wrote in message
news:bjpkke$271$1@news-reader5.wanadoo.fr...hi> hello,i am student in Avignon,France and i I know how to make a
> dynamique array in php but i don't know if it is possible in flash and i
> don't know how to make it? If someone can help me .......
>
> thx
Yes it is possible!
// this is simple array containing 3 strings
shoppingList = ["oranges", "apples", "bananas"];
trace(shoppingList);
And result in output window is:
oranges,apples,bananas
//this is dynamic array in flash
for (i=1; i<=5; i++) {
name = "part_"+i;
myArray = [name];
trace(myArray);
}
And result in output window is:
part_1
part_2
part_3
part_4
part_5
--
Chule
[url]www.uraa.com[/url]
[url]http://mls.f2o.org/nomadi[/url]
[url]http://newsgrupe.tk[/url]
Igor Cuckovic Guest



Reply With Quote

