Hello everybody!
how do you send an array from an ASP-site to flash? Is it possible?
/o_emma
Hello everybody!
how do you send an array from an ASP-site to flash? Is it possible?
/o_emma
Have the ASP (example.asp) page a loop like this :
count = 10
Do While i < count
Response.Write "arrayName[" & i & "]=" & Value(i) & "&"
i = i + 1
Loop
Load this into flash by this :
loadVariablesNum("example.asp", 0);
This will return an array into flash named arrayName[0] till arrayName[9] with the values you may have passed
Might look up some ASP/Flash tutorials.
f.e.
http://www.asp101.com/articles/flash/index.asp