Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Actionscript/Flex not having native JSON parsing abilities?

I have done some searching around, and from what it looks like so far, there is no native way to parse JSON in Actionscript/Flex. XML is automagiaclly parsed and life is good. Why isn't JSON parsed this same way?

like image 752
Jessie A. Morris Avatar asked Jun 27 '26 14:06

Jessie A. Morris


1 Answers

Native JSON parsing is a part of Flash Player 11. You can look at the API in the docs. For earlier versions, you'll have to use a library, like as3corelib to parse JSON.

like image 61
grapefrukt Avatar answered Jul 01 '26 13:07

grapefrukt