<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>tripleaxis.com &#187; Flash Files</title>
	<atom:link href="http://blog.tripleaxis.com/index.php/archives/category/development/flash/9/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.tripleaxis.com</link>
	<description></description>
	<lastBuildDate>Sat, 29 May 2010 22:00:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Flash Peek Bookmarklet</title>
		<link>http://blog.tripleaxis.com/index.php/archives/161</link>
		<comments>http://blog.tripleaxis.com/index.php/archives/161#comments</comments>
		<pubDate>Mon, 14 Aug 2006 19:03:37 +0000</pubDate>
		<dc:creator>Kim</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Files]]></category>

		<guid isPermaLink="false">http://www.tripleaxis.com/blog/?p=161</guid>
		<description><![CDATA[
			
				
			
		
A little trick I&#8217;ve picked up along the way is to enter Javascript directly into the address bar in order to peek at variables inside a running flash movie.
Well I got bored of always having to specify the name/id of the flash movie and having to re-type variable paths in, so i wrote a bookmarklet [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.tripleaxis.com%2Findex.php%2Farchives%2F161"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.tripleaxis.com%2Findex.php%2Farchives%2F161&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>A little trick I&#8217;ve picked up along the way is to enter Javascript directly into the address bar in order to peek at variables inside a running flash movie.</p>
<p>Well I got bored of always having to specify the name/id of the flash movie and having to re-type variable paths in, so i wrote a bookmarklet that identifies the first flash movie on the page, prompts you to enter the variable name you want to see and also retains your last entry in a cookie.</p>
<p>Just open the link below, copy the Javascript (making sure to remove any linebreaks) and create a link in your browser&#8217;s links toolbar. Paste the javascript as the URL (ignoring any warnings) and then click it when viewing a page that contains a flash movie.</p>
<p><a href="/codeViewer.php?file=js/XS3_Flash_Peek.txt" target="_blank">View Javascript</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.tripleaxis.com/index.php/archives/161/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>XML to Object Parser</title>
		<link>http://blog.tripleaxis.com/index.php/archives/85</link>
		<comments>http://blog.tripleaxis.com/index.php/archives/85#comments</comments>
		<pubDate>Mon, 11 Jul 2005 07:00:13 +0000</pubDate>
		<dc:creator>Kim</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Files]]></category>

		<guid isPermaLink="false">http://www.tripleaxis.com/blog/?p=85</guid>
		<description><![CDATA[
			
				
			
		
As the dev team at Macromedia ( now Adobe ) has been doing some cracking work lately, resulting in the rapidly approaching E4X in the AS3, it seems rather pointless keeping my XML Parser behind closed doors.
Written about a year ago &#8211; and evolved from code written several years before that with a friend/colleague of [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.tripleaxis.com%2Findex.php%2Farchives%2F85"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.tripleaxis.com%2Findex.php%2Farchives%2F85&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>As the dev team at Macromedia ( now Adobe ) has been doing some cracking work lately, resulting in the rapidly approaching E4X in the AS3, it seems rather pointless keeping my XML Parser behind closed doors.</p>
<p>Written about a year ago &#8211; and evolved from code written several years before that with a friend/colleague of mine, <a title="Visit pedrodinis's website" target="_blank" href="http://www.pedrodinis.net/">pedrodinis</a> (site in portuguese only), this class extends the generic flash XML class, intercepts the flash-parsed XML and parses that into an object/array format.<span id="more-85"></span></p>
<p>The biggest benefit this class has provided me with is that it <em><strong>doesn&#8217;t</strong></em> fix your XML like the native parser does and instead returns a dependable success/fail and status report from the parse process. Just recently I had a UTF-8 character encoding problem with a localisation of a site I&#8217;d completed a few months ago. The XML looked fine and flash loaded it perfectly without any errors via the native XML class. I had also chucked in some verbose status descriptions instead of just the numeric ones for debugging / error messages, so I tried the same data request, but this time using my gbXML class and immediately got a load fail.</p>
<p>Features:</p>
<ul>
<li>Verbose status descriptions via getter (i.e. myXML.statusDescription )</li>
<li>Support for error tags in returned XML.</li>
<li>Parses XML into Object/Array structure for easy data access / iteration.</li>
<li>Allows for Object/Array transformation back into a valid XML string for comparison or returning data to server.</li>
<li>Maintains natively parsed XML, so firstChild, childNodes, etc are still available.</li>
</ul>
<p style="border: 1px solid #dddddd; padding: 4px"><code><img style="border: 0px none ; padding: 4px" alt="script" src="http://www.tripleaxis.com/blog/wp-content/themes/tripleaxis/script.gif" /><strong><a target="_blank" href="http://www.tripleaxis.com/codeViewer.php?file=flash/classes/XMLObject.as">XMLObject Class</a></strong></code><span style="font-size: 10pt"><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.tripleaxis.com/index.php/archives/85/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
