I have a text field that I'd like to support an arbitrary amount of text in. Right now the text is sent through an XML object request using GET. I'd like to use POST to send the data back to the server. Are there any good options in ActionScript 1?
Asked
Active
Viewed 218 times
1 Answers
0
You want to use the LoadVars object and assign values to keys you create as you go so:
obj.id=myId; obj.status = myStatusId;
obj.sendAndLoad(url, responseVarThatYouSetupToHandleOnLoadEvent, "POST");

Jon
- 2,085
- 2
- 20
- 28
-
Hi I need ur help there, I running out of time!! http://stackoverflow.com/questions/5296923/read-request-url-in-flash – Costa Mar 14 '11 at 10:08