codeandcloud
codeandcloud

Reputation: 55200

How to read JSON using Flash

To read JSON using as3, are there any built in methods?
It would be better if we get some code samples

Upvotes: 1

Views: 592

Answers (1)

PatrickS
PatrickS

Reputation: 9572

try the JSON classes in the as3corelib library http://github.com/mikechambers/as3corelib

basic use:
var obj:Object = JSON.decode(jsonString);
var str:String = JSON.encode(myObject );

Upvotes: 4

Related Questions