<?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>does not validate &#187; Actionscript</title>
	<atom:link href="http://doesnotvalidate.com/tag/actionscript/feed/" rel="self" type="application/rss+xml" />
	<link>http://doesnotvalidate.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 02 Jul 2010 06:31:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>NemoHQ</title>
		<link>http://doesnotvalidate.com/2009/nemohq/</link>
		<comments>http://doesnotvalidate.com/2009/nemohq/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 22:09:41 +0000</pubDate>
		<dc:creator>Dane</dc:creator>
				<category><![CDATA[left]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Dane Hesseldahl]]></category>
		<category><![CDATA[dane@doesnotvalidate.com]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Nemo]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://doesnotvalidate.com/?p=235</guid>
		<description><![CDATA[
URL: http://www.nemohq.com
AGENCY: Nemo
ROLE: Technical Architect, Wordpress Integration
TECHNOLOGIES: Flash, Ruby on Rails
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nemohq.com/" target="_blank"><img src="http://doesnotvalidate.com/wp-content/uploads/nemohq.jpg" alt="" title="nemohq" width="460" height="259" class="alignnone size-full wp-image-236" /></a></p>
<p><strong>URL:</strong> <a href='http://www.nemohq.com' target="_blank">http://www.nemohq.com</a><br />
<strong>AGENCY:</strong> Nemo<br />
<strong>ROLE:</strong> Technical Architect, Wordpress Integration<br />
<strong>TECHNOLOGIES:</strong> Flash, Ruby on Rails</p>
]]></content:encoded>
			<wfw:commentRss>http://doesnotvalidate.com/2009/nemohq/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Using jQuery to Build a Better Flash Fly-Down Nav</title>
		<link>http://doesnotvalidate.com/2009/using-jquery-to-build-a-better-flash-fly-down-navigation/</link>
		<comments>http://doesnotvalidate.com/2009/using-jquery-to-build-a-better-flash-fly-down-navigation/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 18:10:57 +0000</pubDate>
		<dc:creator>Dane</dc:creator>
				<category><![CDATA[left]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Dane Hesseldahl]]></category>
		<category><![CDATA[dane@doesnotvalidate.com]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[odopod]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://doesnotvalidate.com/?p=766</guid>
		<description><![CDATA[It seems simple, but one of the most troublesome tasks is to get a Flash fly-down (or drop-down) menu to reliably collapse when it sits over non-Flash content.  Some browsers (IE) have trouble recognizing the  change of control from the Flash Player application instance to the browser.  For that reason Flash won&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>It seems simple, but one of the most troublesome tasks is to get a Flash fly-down (or drop-down) menu to reliably collapse when it sits over non-Flash content.  Some browsers (IE) have trouble recognizing the  change of control from the Flash Player application instance to the browser.  For that reason Flash won&#8217;t always read when the mouse has moved outside the bounds of the Flash Player&#8230; worse still &#8211; it just receives no notification at all, which means that if you&#8217;re relying on Flash to read when the mouse has moved outside the bounds of the navigation &#8211; you&#8217;re out of luck.  </p>
<p><br/>Over the years I&#8217;ve come up with many tricks to help deal with this &#8211; some more effective than others.  Today I found the best solution to date.  It&#8217;s not 100% effective, but it&#8217;s much better than any of the other options that I used.</p>
<p><br/>I decided to try using the <a href='http://www.jquery.com'>jQuery</a> <a href='http://docs.jquery.com/Events/hover#overout'>hover method</a> to detect when the mouse leaves the Flash&#8217;s containing DIV element in the DOM.</p>
<p><br/>The AJAX code looked something like this:</p>
<p><br/></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'document'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#flashNavReplace'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">hover</span><span style="color: #009900;">&#40;</span>
        <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
	    <span style="color: #006600; font-style: italic;">//rollover functionality here</span>
        <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
        <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
            getFlashMovie<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;flashNavReplace&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">jsCloseNavigation</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> getFlashMovie<span style="color: #009900;">&#40;</span>movieName<span style="color: #009900;">&#41;</span> 
<span style="color: #009900;">&#123;</span>
    <span style="color: #003366; font-weight: bold;">var</span> isIE <span style="color: #339933;">=</span> navigator.<span style="color: #660066;">appName</span>.<span style="color: #660066;">indexOf</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;Microsoft&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!=</span> <span style="color: #339933;">-</span><span style="color: #CC0000;">1</span><span style="color: #339933;">;</span>
    <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #009900;">&#40;</span>isIE<span style="color: #009900;">&#41;</span> <span style="color: #339933;">?</span> window<span style="color: #009900;">&#91;</span>movieName<span style="color: #009900;">&#93;</span> <span style="color: #339933;">:</span> document<span style="color: #009900;">&#91;</span>movieName<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>and then the Flash side uses some code like this:</p>
<p><br/></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">external</span>.<span style="color: #006600;">ExternalInterface</span>;
&nbsp;
<span style="color: #808080; font-style: italic;">/**************************************************************************
* 
* CONSTRUCTOR
* 
**************************************************************************/</span>
<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> TopNavigation<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#123;</span>
    <span style="color: #808080; font-style: italic;">//setup the JS callback</span>
    ExternalInterface.<span style="color: #006600;">addCallback</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;jsCloseNavigation&quot;</span>, jsClose<span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> jsClose<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span>
<span style="color: #66cc66;">&#123;</span>
    Logger.<span style="color: #0066CC;">log</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;CALLED FROM JS&quot;</span><span style="color: #66cc66;">&#41;</span>;
    <span style="color: #808080; font-style: italic;">//close the nav</span>
<span style="color: #66cc66;">&#125;</span></pre></td></tr></table></div>

<p><br/>This works for me pretty much all of the time&#8230; I can break it if I really try, but it works great for normal usage.</p>
]]></content:encoded>
			<wfw:commentRss>http://doesnotvalidate.com/2009/using-jquery-to-build-a-better-flash-fly-down-navigation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SPEAK VISUAL IS GETTING A LOT OF ATTENTION</title>
		<link>http://doesnotvalidate.com/2009/speak-visual-is-getting-a-lot-of-attention/</link>
		<comments>http://doesnotvalidate.com/2009/speak-visual-is-getting-a-lot-of-attention/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 16:55:05 +0000</pubDate>
		<dc:creator>Dane</dc:creator>
				<category><![CDATA[left]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Dane Hesseldahl]]></category>
		<category><![CDATA[dane@doesnotvalidate.com]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[FWA]]></category>
		<category><![CDATA[odopod]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[san francisco]]></category>

		<guid isPermaLink="false">http://doesnotvalidate.com/?p=760</guid>
		<description><![CDATA[Congratulations to the entire NVIDIA team here @ odopod on the success of the Speak Visual site on being featured in F:E:D, StyleBoost, and being chosen as the FWA Site of the Day.



]]></description>
			<content:encoded><![CDATA[<p>Congratulations to the entire NVIDIA team here @ <a href='http://www.odopod.com' target="_blank">odopod</a> on the success of the <a href='http://www.speakvisual.com' target="_blank">Speak Visual</a> site on being featured in <a href='http://www.wdcf.com/FED/0066.html' target="_blank">F:E:D</a>, <a href='http://styleboost.com/links/1354/' target="_blank">StyleBoost</a>, and being chosen as the <a href='http://www.thefwa.com/?app=winners&#038;id=6861' target="_blank">FWA Site of the Day</a>.</p>
<p><br/><a href="http://www.speakvisual.com"><img src="http://doesnotvalidate.com/wp-content/uploads/nvidia_speakvisual_01.jpg" alt="" title="nvidia_speakvisual_01" width="425" height="285" class="alignnone size-full wp-image-761" /></a></p>
<p><br/><a href="http://www.speakvisual.com"><img src="http://doesnotvalidate.com/wp-content/uploads/nvidia_speakvisual_02.jpg" alt="" title="nvidia_speakvisual_02" width="425" height="285" class="alignnone size-full wp-image-762" /></a></p>
<p><br/><a href="http://www.speakvisual.com"><img src="http://doesnotvalidate.com/wp-content/uploads/nvidia_speakvisual_03.jpg" alt="" title="nvidia_speakvisual_03" width="425" height="285" class="alignnone size-full wp-image-763" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://doesnotvalidate.com/2009/speak-visual-is-getting-a-lot-of-attention/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Electrolux Virtual Kitchen</title>
		<link>http://doesnotvalidate.com/2008/project-electrolux-virtual-kitchen/</link>
		<comments>http://doesnotvalidate.com/2008/project-electrolux-virtual-kitchen/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 15:48:04 +0000</pubDate>
		<dc:creator>Dane</dc:creator>
				<category><![CDATA[left]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Dane Hesseldahl]]></category>
		<category><![CDATA[electrolux]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[struck creative]]></category>

		<guid isPermaLink="false">http://doesnotvalidate.com/?p=137</guid>
		<description><![CDATA[
URL: http://www.electroluxappliances.com/node58.aspx
AGENCY: Struck Creative / DDB-NY
LAUNCH: January 2008
ROLE: Lead Developer
I relied heavily upon Arthur Debert&#8217;s Bulk Loader to create this video and audio heavy media site.  Media files load in the background and you view other content, to create as seemless an experience as possible.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.electroluxappliances.com/node58.aspx" target="_blank"><img src="http://doesnotvalidate.com/wp-content/uploads/virtual_kitchen.jpg" alt="" title="virtual_kitchen"  class="alignnone size-full wp-image-138" /></a></p>
<p><br/><strong>URL: </strong><a href='http://www.electroluxappliances.com/node58.aspx' target="_blank">http://www.electroluxappliances.com/node58.aspx</a><br />
<strong>AGENCY: </strong><a href='http://www.struckcreative.com' target="_blank">Struck Creative</a> / <a href='http://www.ddb.com/'>DDB-NY</a><br />
<strong>LAUNCH: </strong>January 2008<br />
<strong>ROLE: </strong>Lead Developer</p>
<p><br/>I relied heavily upon Arthur Debert&#8217;s <a href='http://code.google.com/p/bulk-loader/' target="_blank">Bulk Loader</a> to create this video and audio heavy media site.  Media files load in the background and you view other content, to create as seemless an experience as possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://doesnotvalidate.com/2008/project-electrolux-virtual-kitchen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GM USED CAR AMBUSH</title>
		<link>http://doesnotvalidate.com/2008/gm-used-car-ambush/</link>
		<comments>http://doesnotvalidate.com/2008/gm-used-car-ambush/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 00:59:47 +0000</pubDate>
		<dc:creator>Dane</dc:creator>
				<category><![CDATA[left]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[Struck]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://doesnotvalidate.com/?p=84</guid>
		<description><![CDATA[
URL: http://www.usedcarambush.com/
AGENCY: STRUCK Creative
LAUNCH: July 2008
ROLE: Lead Developer / Technical Architect
This was the last project that I worked on at STRUCK before I left for NEMO.  The site is built entirely in ActionScript3 and I personally built the Papervision 3D powered van interior, and the media queue and streaming system. 
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.usedcarambush.com/" target="_blank"><img src="http://doesnotvalidate.com/wp-content/uploads/uca.jpg" alt="" title="uca" width="460" height="298" class="alignnone size-full wp-image-85" /></a></p>
<p><br/><strong>URL: </strong><a href='http://www.usedcarambush.com/' target="_blank">http://www.usedcarambush.com/</a><br />
<strong>AGENCY: </strong><a href='http://www.struckcreative.com' target="_blank">STRUCK Creative</a><br />
<strong>LAUNCH: </strong>July 2008<br />
<strong>ROLE: </strong>Lead Developer / Technical Architect</p>
<p><br/>This was the last project that I worked on at STRUCK before I left for NEMO.  The site is built entirely in ActionScript3 and I personally built the Papervision 3D powered van interior, and the media queue and streaming system. </p>
]]></content:encoded>
			<wfw:commentRss>http://doesnotvalidate.com/2008/gm-used-car-ambush/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meet in Utah</title>
		<link>http://doesnotvalidate.com/2008/meet-in-utah/</link>
		<comments>http://doesnotvalidate.com/2008/meet-in-utah/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 22:01:35 +0000</pubDate>
		<dc:creator>Dane</dc:creator>
				<category><![CDATA[left]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Dane Hesseldahl]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[Struck]]></category>

		<guid isPermaLink="false">http://doesnotvalidate.com/?p=229</guid>
		<description><![CDATA[
URL: http://www.meetinutah.com
AGENCY: STRUCK Creative
LAUNCH: December 2007
ROLE: Lead Developer
TECHNOLOGIES: Flash
Flash landing page for the Utah Office of Tourism to direct visitors to the correct visitor&#8217;s bureau for their destination.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://meetinutah.com" target="_blank"><img src="http://doesnotvalidate.com/wp-content/uploads/miu.jpg" alt="" title="meetinutah.com" width="460" height="287" class="alignnone size-full wp-image-230" /></a></p>
<p><strong>URL:</strong> <a href='http://www.meetinutah.com' target="_blank">http://www.meetinutah.com</a><br />
<strong>AGENCY:</strong> <a href='http://www.struckcreative.com' target="_blank">STRUCK Creative</a><br />
<strong>LAUNCH:</strong> December 2007<br />
<strong>ROLE:</strong> Lead Developer<br />
<strong>TECHNOLOGIES:</strong> Flash</p>
<p><br/>Flash landing page for the Utah Office of Tourism to direct visitors to the correct visitor&#8217;s bureau for their destination.</p>
]]></content:encoded>
			<wfw:commentRss>http://doesnotvalidate.com/2008/meet-in-utah/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HP + VOODOODNA</title>
		<link>http://doesnotvalidate.com/2008/hp-voodoodna/</link>
		<comments>http://doesnotvalidate.com/2008/hp-voodoodna/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 17:06:17 +0000</pubDate>
		<dc:creator>Dane</dc:creator>
				<category><![CDATA[left]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Dane Hesseldahl]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[HP]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://doesnotvalidate.com/?p=88</guid>
		<description><![CDATA[
URL: http://www.hp.com/voodoodna/
AGENCY: NEMO
LAUNCH: June 2008
ROLE: Lead Developer / Technical Architect
]]></description>
			<content:encoded><![CDATA[<p><a href="http://h20435.www2.hp.com/#/HOME/" target="_blank"><img src="http://doesnotvalidate.com/wp-content/uploads/vdna.jpg" alt="" title="vdna" width="460" height="343" class="alignnone size-full wp-image-89" /></a></p>
<p><br/><strong>URL: </strong><a href='http://www.hp.com/voodoodna/'>http://www.hp.com/voodoodna/</a><br />
<strong>AGENCY: </strong><a href='http://www.nemohq.com'>NEMO</a><br />
<strong>LAUNCH: </strong>June 2008<br />
<strong>ROLE: </strong>Lead Developer / Technical Architect</p>
]]></content:encoded>
			<wfw:commentRss>http://doesnotvalidate.com/2008/hp-voodoodna/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nike 6.0</title>
		<link>http://doesnotvalidate.com/2008/nike-60/</link>
		<comments>http://doesnotvalidate.com/2008/nike-60/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 23:03:09 +0000</pubDate>
		<dc:creator>Dane</dc:creator>
				<category><![CDATA[left]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Nemo]]></category>
		<category><![CDATA[Nike]]></category>
		<category><![CDATA[nike 6.0]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://doesnotvalidate.com/?p=206</guid>
		<description><![CDATA[
URL: http://www.nike6.com
AGENCY: Nemo
LAUNCH: July 2008
ROLE: Senior Developer
TECHNOLOGIES: Flash, jQuery, &#038; Wordpress
There&#8217;s a lot of AJAX that binds the two halves of this site together &#8211; one side represents that brand message, and it built in Flash.  The other side represents &#8220;The Insider&#8221; showcasing the latest news and information about the athletes.  The two [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nike.com/nke6/v5/?undefined#/home/home/"><img src="http://doesnotvalidate.com/wp-content/uploads/nike6.jpg" alt="" title="nike6" width="460" height="315" class="alignnone size-full wp-image-207" /></a></p>
<p><br/><strong>URL: </strong><a href='http://www.nike6.com'>http://www.nike6.com</a><br />
<strong>AGENCY: </strong><a href='http://www.nemohq.com'>Nemo</a><br />
<strong>LAUNCH: </strong>July 2008<br />
<strong>ROLE: </strong>Senior Developer<br />
<strong>TECHNOLOGIES: </strong>Flash, jQuery, &#038; Wordpress</p>
<p><br/>There&#8217;s a lot of AJAX that binds the two halves of this site together &#8211; one side represents that brand message, and it built in Flash.  The other side represents &#8220;The Insider&#8221; showcasing the latest news and information about the athletes.  The two sides interact and use tagged content as a way to display relevant content based on what is currently shown on the opposite side.<br />
<br/>This site was featured on <a href='http://www.commarts.com/'>http://www.commarts.com/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://doesnotvalidate.com/2008/nike-60/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Wi-Life</title>
		<link>http://doesnotvalidate.com/2008/the-wi-life/</link>
		<comments>http://doesnotvalidate.com/2008/the-wi-life/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 22:19:12 +0000</pubDate>
		<dc:creator>Dane</dc:creator>
				<category><![CDATA[left]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[Yahoo Maps]]></category>

		<guid isPermaLink="false">http://doesnotvalidate.com/?p=173</guid>
		<description><![CDATA[
URL: http://thewilife.urbandaddy.com/
AGENCY: Left Fields Labs
LAUNCH: August 2008
ROLE: Lead Developer
TECHNOLOGIES: Flash
Flash based site for UrbanDaddy and Sony to help travelers locate Wi-Fi hot-spots in San Francisco and New York.  ActionScript 3 that integrates with the flash-based Yahoo Maps API.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://thewilife.urbandaddy.com/"><img src="http://doesnotvalidate.com/wp-content/uploads/wilife.jpg" alt="" title="wilife" width="460" height="368" class="alignnone size-full wp-image-174" /></a></p>
<p><br/><strong>URL: </strong><a href='http://utah.travel/'>http://thewilife.urbandaddy.com/</a><br />
<strong>AGENCY: </strong><a href='http://www.leftfieldlabs.com/'>Left Fields Labs</a><br />
<strong>LAUNCH: </strong>August 2008<br />
<strong>ROLE: </strong>Lead Developer<br />
<strong>TECHNOLOGIES: </strong>Flash</p>
<p><br/>Flash based site for <a href='http://www.urbandaddy.com/'>UrbanDaddy</a> and <a href='http://www.sony.com'>Sony</a> to help travelers locate Wi-Fi hot-spots in San Francisco and New York.  ActionScript 3 that integrates with the flash-based Yahoo Maps API.</p>
]]></content:encoded>
			<wfw:commentRss>http://doesnotvalidate.com/2008/the-wi-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GRANT SKINNER ON AS3 RESOURCE MANAGEMENT</title>
		<link>http://doesnotvalidate.com/2008/grant-skinner-on-as3-resource-management/</link>
		<comments>http://doesnotvalidate.com/2008/grant-skinner-on-as3-resource-management/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 17:45:08 +0000</pubDate>
		<dc:creator>Dane</dc:creator>
				<category><![CDATA[left]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Garbage Collection]]></category>
		<category><![CDATA[Grant Skinner]]></category>
		<category><![CDATA[Resource Management]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://doesnotvalidate.com/?p=109</guid>
		<description><![CDATA[This is an oldie but a goodie &#8211; Grant Skinner gives the straight dope on Garbage Collection and resource management in ActionSctipt 3.  Topics that are all too often overlooked.
While on the subject you might also want to check out his articlce Understanding the DELETE Keyword.
]]></description>
			<content:encoded><![CDATA[<p>This is an oldie but a goodie &#8211; <a href='http://gskinner.com/blog/archives/2006/06/as3_resource_ma.html' target="_blank">Grant Skinner gives the straight dope on Garbage Collection and resource management in ActionSctipt 3</a>.  Topics that are all too often overlooked.<br />
<br/>While on the subject you might also want to check out his articlce <a href='http://gskinner.com/blog/archives/2006/06/understanding_t.html'>Understanding the DELETE Keyword</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://doesnotvalidate.com/2008/grant-skinner-on-as3-resource-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
