vote up 0 vote down star

I basically have a form inside of Flash that I need to submit to a server-side processing page, which will then return either json or xml telling if it succeeded or not ( json, xml I suppose ). My version of Flash is CS4 and I'm wondering if there are any libraries or frameworks I can use to accomplish this.

flag

1  
Are you using AS2 or AS3? – David Nov 6 at 20:08
AS3 - looks like the first answer is what I need, thanks – meder Nov 6 at 20:35

2 Answers

vote up 1 vote down check

Figuring out how a framework works or a complete library shouldn't be less work than uses the provided flash classes.

Everything you might need is build into flash, except a JSON library which can be found here.

Take a look at the URLRequest and the URLLoader class in the actionscript 3 reference.

link|flag
vote up 1 vote down

You can use URLRequest, and set its method to URLRequestMethod.POST. For setting request parameters use URLvariables.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.