To read JSON using as3, are there any built in methods?
It would be better if we get some code samples
views:
48answers:
1
+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
2010-08-27 07:52:37