<?xml version="1.0" encoding="iso-8859-1"?><rss version="2.0">
<channel><title><![CDATA[ActionScript.org Flash, Flex and ActionScript Resources - Comments for article: JSON Communication with Flash: Loading Data]]></title><link>http://www.actionscript.org/resources</link><description /><language>en-us</language><copyright><![CDATA[http://www.actionscript.org/resources]]></copyright><generator>N/A</generator><webMaster>general.redirect@gmail.com</webMaster><lastBuildDate>Sun, 22 Nov 2009 09:55:54 CST</lastBuildDate><ttl>20</ttl><item><title><![CDATA[Comment #1]]></title><link>http://www.actionscript.org/resources/articles/516/1/JSON-Communication-with-Flash-Loading-Data/Page1.html#Comment4763</link><description><![CDATA[When i do this, i recieve an error, not only with your tutorial but with every other JSON tutorial i have used.

**Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 30: The property being referenced does not have the static attribute.
     var jsonObj = JSON.stringify(jsondata); 

Can you advise?<br/><br/>
(Comment posted by Jason at 4:22 pm, Wed 18th Jul 2007)]]></description><author>no@spam.com (Jason)</author><pubDate><![CDATA[Wed, 18 Jul 2007 16:22:29 CDT]]></pubDate><guid isPermaLink="true">http://www.actionscript.org/resources/articles/516/1/JSON-Communication-with-Flash-Loading-Data/Page1.html#Comment4763</guid></item><item><title><![CDATA[Comment #2]]></title><link>http://www.actionscript.org/resources/articles/516/1/JSON-Communication-with-Flash-Loading-Data/Page1.html#Comment5098</link><description><![CDATA[Great article. I'm not sure if you'd find it helpful, but I recently wrote an indepth article about parsing JSON in Flash. I'd love to know if you find this useful. http://actionscript.verve8media.com/?p=3<br/><br/>
(Comment posted by Heath Michaels at 7:48 pm, Wed 1st Aug 2007)]]></description><author>no@spam.com (Heath Michaels)</author><pubDate><![CDATA[Wed, 01 Aug 2007 19:48:41 CDT]]></pubDate><guid isPermaLink="true">http://www.actionscript.org/resources/articles/516/1/JSON-Communication-with-Flash-Loading-Data/Page1.html#Comment5098</guid></item><item><title><![CDATA[Comment #3]]></title><link>http://www.actionscript.org/resources/articles/516/1/JSON-Communication-with-Flash-Loading-Data/Page1.html#Comment6600</link><description><![CDATA[Thats is cause JSON dosnt have a static method called stringig.
Do this:
var json:JSON = new JSON();
then:
json.string.....
thats all<br/><br/>
(Comment posted by DaniusKlan at 4:09 pm, Mon 8th Oct 2007)]]></description><author>no@spam.com (DaniusKlan)</author><pubDate><![CDATA[Mon, 08 Oct 2007 16:09:53 CDT]]></pubDate><guid isPermaLink="true">http://www.actionscript.org/resources/articles/516/1/JSON-Communication-with-Flash-Loading-Data/Page1.html#Comment6600</guid></item><item><title><![CDATA[Comment #4]]></title><link>http://www.actionscript.org/resources/articles/516/1/JSON-Communication-with-Flash-Loading-Data/Page1.html#Comment9660</link><description><![CDATA[um the link to json.as is broken and therefore this entire article is completely useless<br/><br/>
(Comment posted by George Jempty at 9:43 am, Thu 21st Feb 2008)]]></description><author>no@spam.com (George Jempty)</author><pubDate><![CDATA[Thu, 21 Feb 2008 09:43:40 CST]]></pubDate><guid isPermaLink="true">http://www.actionscript.org/resources/articles/516/1/JSON-Communication-with-Flash-Loading-Data/Page1.html#Comment9660</guid></item><item><title><![CDATA[Comment #5]]></title><link>http://www.actionscript.org/resources/articles/516/1/JSON-Communication-with-Flash-Loading-Data/Page1.html#Comment11937</link><description><![CDATA[This works...

import com.brickabracka.JSON;
var json:JSON = new JSON();

var jsondata:LoadVars = new LoadVars();
var jsonURL:String = "The Call to JSON";
jsondata.load(jsonURL);

jsondata.onLoad = function() {
	trace("JSON DATA Loaded");
	//trace(jsondata)
	var jsonObj = json.stringify(jsondata); 	
	trace(jsonObj)
}<br/><br/>
(Comment posted by John at 1:12 pm, Tue 9th Sep 2008)]]></description><author>no@spam.com (John)</author><pubDate><![CDATA[Tue, 09 Sep 2008 13:12:13 CDT]]></pubDate><guid isPermaLink="true">http://www.actionscript.org/resources/articles/516/1/JSON-Communication-with-Flash-Loading-Data/Page1.html#Comment11937</guid></item></channel></rss>