<?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>Liam O&#039;Donnell &#187; javascript</title>
	<atom:link href="http://www.spikything.com/blog/index.php/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.spikything.com/blog</link>
	<description>part designer. part developer. all creative</description>
	<lastBuildDate>Sat, 24 Jul 2010 20:41:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>MouseWheelTrap now at GoogleCode</title>
		<link>http://www.spikything.com/blog/index.php/2010/04/03/mousewheeltrap-now-at-googlecode/</link>
		<comments>http://www.spikything.com/blog/index.php/2010/04/03/mousewheeltrap-now-at-googlecode/#comments</comments>
		<pubDate>Sat, 03 Apr 2010 21:13:04 +0000</pubDate>
		<dc:creator>Liam</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[externalinterface]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mousewheel]]></category>
		<category><![CDATA[source code]]></category>

		<guid isPermaLink="false">http://www.spikything.com/blog/?p=226</guid>
		<description><![CDATA[<a href="http://www.spikything.com/blog/index.php/2010/04/03/mousewheeltrap-now-at-googlecode/"><img align="left" hspace="5" width="150" src="http://www.spikything.com/blog/wp-content/uploads/2010/04/mimages.jpg" class="alignleft wp-post-image tfe" alt="" title="MouseWheelTrap" /></a>I&#8217;ve put the latest version of my Flash/browser scrolling fixer over on GoogleCode and will be updating it there, as necessary.]]></description>
		<wfw:commentRss>http://www.spikything.com/blog/index.php/2010/04/03/mousewheeltrap-now-at-googlecode/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MouseWheelTrap &#8211; how to stop simultaneous Flash / browser scrolling in AS3</title>
		<link>http://www.spikything.com/blog/index.php/2009/11/27/stop-simultaneous-flash-browser-scrolling/</link>
		<comments>http://www.spikything.com/blog/index.php/2009/11/27/stop-simultaneous-flash-browser-scrolling/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 00:46:33 +0000</pubDate>
		<dc:creator>Liam</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[externalinterface]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mousewheel]]></category>
		<category><![CDATA[source code]]></category>

		<guid isPermaLink="false">http://www.spikything.com/blog/?p=206</guid>
		<description><![CDATA[<a href="http://www.spikything.com/blog/index.php/2009/11/27/stop-simultaneous-flash-browser-scrolling/"><img align="left" hspace="5" width="150" height="150" src="http://www.spikything.com/blog/wp-content/plugins/thumbnail-for-excerpts/tfe_no_thumb.png" class="alignleft wp-post-image tfe" alt="" title="" /></a>I recently stumbled over a new AS3 gotcha that seems to be bugging a lot of the Flash community. Apparently a new 'feature' of AS3, whereby using the mousewheel inside an embedded Flash movie still scrolls the surrounding browser window &#8230; <a href="http://www.spikything.com/blog/index.php/2009/11/27/stop-simultaneous-flash-browser-scrolling/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.spikything.com/blog/index.php/2009/11/27/stop-simultaneous-flash-browser-scrolling/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to use ExternalInterface to integrate AS3 with JavaScript</title>
		<link>http://www.spikything.com/blog/index.php/2009/08/23/externalinterface_howto/</link>
		<comments>http://www.spikything.com/blog/index.php/2009/08/23/externalinterface_howto/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 12:10:23 +0000</pubDate>
		<dc:creator>Liam</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[externalinterface]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[source code]]></category>

		<guid isPermaLink="false">http://www.spikything.com/blog/?p=139</guid>
		<description><![CDATA[<a href="http://www.spikything.com/blog/index.php/2009/08/23/externalinterface_howto/"><img align="left" hspace="5" width="150" height="150" src="http://www.spikything.com/blog/wp-content/plugins/thumbnail-for-excerpts/tfe_no_thumb.png" class="alignleft wp-post-image tfe" alt="" title="" /></a>Here's a quick snippet of code for integrating your SWFs with JavaScript, using ExternalInterface: PLAIN TEXT Actionscript: import flash.external.ExternalInterface; &#160; // Calling a JavaScript function from AS3 (with optional parameters) if &#40;ExternalInterface.available&#41; ExternalInterface.call&#40;"javascriptFunction", param1, param2&#41;; &#160; // Implementing a JavaScript &#8230; <a href="http://www.spikything.com/blog/index.php/2009/08/23/externalinterface_howto/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.spikything.com/blog/index.php/2009/08/23/externalinterface_howto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
