Hi All,
I'm really newbie of Flash Lite, but i did something with Flash in the past. So If I said something completely wrong, be patient...
I would like to exchange data with a server. My mobile should take the path of an image. It sends some data (var1, var2) to a php server and the server answers with a string that is a path.
I implemented this with the following code:
_root.text1 is undefined after I press the button.Code:on(release){ var envelope:LoadVars = new LoadVars(); var envelope_rcv:LoadVars = new LoadVars(); envelope.val1 = '41.5'; envelope.val2 = '12.3'; envelope.sendAndLoad("http://www.mywebsite.com/try.php",envelope_rcv,"GET"); _root.text1 = envelope_rcv.path; }
Is there any error according to you?
How would you deliver that issue?
Thank you





