views:

48

answers:

1

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

+2  A: 

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 );
PatrickS