Reputation: 55200
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
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