<?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>Pixels from the Edge &#187; Flash</title>
	<atom:link href="http://pixelsfromtheedge.com/tag/flash/feed/" rel="self" type="application/rss+xml" />
	<link>http://pixelsfromtheedge.com</link>
	<description>Creative // Technology // Digital // Interactive // Mobile // Advertising</description>
	<lastBuildDate>Tue, 24 Jan 2012 18:18:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Safari Popup Blocker And Flash AS3</title>
		<link>http://pixelsfromtheedge.com/2009/12/safari-popup-blocker-and-flash-as3/</link>
		<comments>http://pixelsfromtheedge.com/2009/12/safari-popup-blocker-and-flash-as3/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 20:23:11 +0000</pubDate>
		<dc:creator>Richie</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Safari Browser]]></category>
		<category><![CDATA[Web Apps]]></category>

		<guid isPermaLink="false">http://richie-p.com/blog/?p=611</guid>
		<description><![CDATA[On a recent project we came across an issue where user initiated popups get blocked in Safari when being called by an AS3 Flash app.  The issue doesn&#8217;t happen in AS2 and I&#8217;d not come across it before, but when I did and I researched it I found it was a well documented issue with no solution.  Most popup blockers are able to distinguish between a user initiated popup and an automatic one, and this is the case with all browsers with AS2 or all browsers except Safari with AS3.  But what do you do if a popup is an&#8230;]]></description>
			<content:encoded><![CDATA[<p>On a recent project we came across an issue where user initiated popups get blocked in Safari when being called by an AS3 Flash app.  The issue doesn&#8217;t happen in AS2 and I&#8217;d not come across it before, but when I did and I researched it I found it was a well documented issue with no solution.  Most popup blockers are able to distinguish between a user initiated popup and an automatic one, and this is the case with all browsers with AS2 or all browsers except Safari with AS3.  But what do you do if a popup is an integral part of your design and you&#8217;re using AS3?  As far as I can tell there is no fix for this issue, we found some apparent solutions but when when tested them they failed.</p>
<p>What I came up with isn&#8217;t a fix so much as a working solution.  When you initiate a popup in Flash it&#8217;s done by calling a JavaScript function called window.open().  This function returns a boolean of True upon success or False upon failure.  So programmatically this gives us a way of knowing if the popup has been blocked.  In which case we offer the user up an HTML link to the popup that we know won&#8217;t get blocked.  I believe that when designed well and with thought this can be an elegant solution for a small base of users who are probably already used to seeing certain functionality across the web fail for them.</p>
<p>There&#8217;s obviously a number of way to implement this, but as a quick and dirty example lets create a hidden HTML block to appear if the popup fails:</p>
<pre class="brush:html">
<div id="popupMessage" style="display:none;">The window was unable to open, possibly due to your popup blocker. <a href="javascript:shareFacebook();">Click here to open</a>.</div>
</pre>
<p>Okay now lets look at the popup JavaScript function that Flash calls:</p>
<pre class="brush:js">
function shareFacebook(){
	success=window.open('http://www.facebook.com/sharer.php?u=http://www.pixelsfromtheedge.com','FacebookShare','toolbar=0,status=0,width=626,location=no,menubar=no,height=436');
	if (!success){
		document.getElementById("popupMessage").style.display="block";
	}
}
</pre>
<p>So basically what&#8217;s going to happen is that the hidden window appears only if the popup failed, thus allowing for the user to click the HTML which doesn&#8217;t get blocked.</p>
<p>But what if we have multiple popup windows?  We need a way to have one message div that can trigger an endless number of popups.  And why does the message have to remain forever visible once it appears?</p>
<p>Bearing this in mind here&#8217;s an example of a more elegant generic version.  Again it&#8217;s quick an dirty code and I wouldn&#8217;t necessarily expect it to be in a production environment in its current state:</p>
<p>This time we have the popupMessage call a generic function:</p>
<pre class="brush:html">
<div id="popupMessage" style="display:none;">The window was unable to open, possibly due to your popup blocker. <a href="javascript:launchPopup();">Click here to open</a>.</div>
</pre>
<p>The actual popup JavaScript function that Flash calls is the same, but this time we need it to set global variables:</p>
<pre class="brush:js">
var popupFunc="";
var popupTimer="";
function shareFacebook(){
	p=window.open('http://www.facebook.com/sharer.php?u=http://www.pixelsfromtheedge.com','FacebookShare','toolbar=0,status=0,width=626,location=no,menubar=no,height=436');

	if (!p){
		popupFunc="facebookShare";
		clearTimeout(popupTimer);
		$("#popupMessage").slideDown("slow");
		popupTimer=window.setTimeout('$("#popupMessage").slideUp("slow")',10000);
	}
}
</pre>
<p>So what basically happens is if the popup fails we set the name of the popup function that failed into a global variable called popupFunc.  We use the jQuery slideDown() method to gracefully make the message appear.  We also use a global variable called popupTimer to hide the message after 10 seconds.  And in case the message is already showing from a different request we clear the popupTimer so it doesn&#8217;t disappear too quickly.</p>
<p>And finally lets look at the generic popup function:</p>
<pre class="brush:js">
function launchPopup(){
	$("#popupMessage").slideUp("slow");
	eval(popupFunc+"()");
}
</pre>
<p>We hide the message and call the popup function.</p>
<p>Like I say this is all quick and dirty for display purposes.  But I really believe this to be a solid and elegant solution to a frustrating and problematic situation.</p>
]]></content:encoded>
			<wfw:commentRss>http://pixelsfromtheedge.com/2009/12/safari-popup-blocker-and-flash-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yellow Bird Camera &#8211; Video Unbound</title>
		<link>http://pixelsfromtheedge.com/2009/07/yellow-bird-camera-video-unbound/</link>
		<comments>http://pixelsfromtheedge.com/2009/07/yellow-bird-camera-video-unbound/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 16:49:00 +0000</pubDate>
		<dc:creator>Richie</dc:creator>
				<category><![CDATA[Digital Video]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web 3.0]]></category>
		<category><![CDATA[Web Apps]]></category>

		<guid isPermaLink="false">http://www.detroitdigitalrevolution.com/clients/me/blog/?p=36</guid>
		<description><![CDATA[Today I came across a tweet linking to a demo of what the Yellow Bird camera has to offer. I was blown away but I had work to get on with so I put it to the back of my mind and moved on, but I couldn&#8217;t stop thinking about it.  Then later at lunch I was explaining it to some colleagues, it was the first free moment I&#8217;d had to reflect on the technology after a busy morning, and I started to get overloaded with ideas of how this technology can be implemented.  And more than that I never&#8230;]]></description>
			<content:encoded><![CDATA[<p>Today I came across a tweet linking to a demo of what the Yellow Bird camera has to offer. I was blown away but I had work to get on with so I put it to the back of my mind and moved on, but I couldn&#8217;t stop thinking about it.  Then later at lunch I was explaining it to some colleagues, it was the first free moment I&#8217;d had to reflect on the technology after a busy morning, and I started to get overloaded with ideas of how this technology can be implemented.  And more than that I never really imagined a technology like this existing before, it&#8217;s really inspired me, opening my mind to the fact that all current technology is in it&#8217;s infancy compared to where it will be in 100 years, we&#8217;re in the digital stone age people!  I feel really lucky to be around at a time like this, witness the digital revolution first hand.  Be inspired!</p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab" width="450" height="271" align="middle" id="yellowBird"><param name="movie" value="http://player.yb.nl/showcasev1/embed/YBPlayerLite.swf?c=showcase" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="wmode" value="normal"/><embed src="http://player.yb.nl/showcasev1/embed/YBPlayerLite.swf?c=showcase" quality="high" bgcolor="#000000" width="450" height="271" name="yellowBird" align="middle" play="true" loop="false" quality="high" wmode="normal" allowScriptAccess="always" type="application/x-shockwave-flash" allowFullScreen="true" pluginspage="http://www.adobe.com/go/getflashplayer"></embed></object></p>
<p>“By using a Google Streetview-like camera, a system with six lenses, not as a photo but as a video camera, an all-encompassing picture is captured. […]<br />From the point where the images were recorded, the viewer can look in any direction, let his eyes wander through the crowd, or stare at the ground or the air, which makes viewing a video an experience without boundaries.” &#8211; Yellow Bird press release</p>
<p>The company has by far the longest domain name I have ever seen:<br /><a href="http://www.yellowbirdsdonthavewingsbuttheyflytomakeyouexperiencea3dreality.com/" target="_blank">www.yellowbirdsdonthavewingsbuttheyflytomakeyouexperiencea3dreality.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pixelsfromtheedge.com/2009/07/yellow-bird-camera-video-unbound/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Augmented Reality</title>
		<link>http://pixelsfromtheedge.com/2009/06/more-augmented-reality/</link>
		<comments>http://pixelsfromtheedge.com/2009/06/more-augmented-reality/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 11:52:00 +0000</pubDate>
		<dc:creator>Richie</dc:creator>
				<category><![CDATA[Augmented Reality]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Mobile Devices]]></category>
		<category><![CDATA[Web Apps]]></category>

		<guid isPermaLink="false">http://www.detroitdigitalrevolution.com/clients/me/blog/?p=35</guid>
		<description><![CDATA[Our team recently had the agency&#8217;s first stab at the <a href="http://en.wikipedia.org/wiki/Augmented_reality" target="_new">Augmented Reality</a> craze that&#8217;s going down lately. We launched <a href="http://www.peepthehole.com/" target="_new">this</a> a few weeks back.  We didn&#8217;t have much of a budget at all so it&#8217;s no great masterpiece and we&#8217;re relying on our target audience (8-18 years) not having been previously exposed to the technology, so hopefully they&#8217;ll find it fresh and fun.  Basically the packaging and magazine ads have the image needed for the experience, we&#8217;re not promoting it in any way, it&#8217;s just a <del>viral&#8230;</del> seeded campaign. Here&#8217;s a neat example of how it works:

For the most]]></description>
			<content:encoded><![CDATA[<p>Our team recently had the agency&#8217;s first stab at the <a href="http://en.wikipedia.org/wiki/Augmented_reality" target="_new">Augmented Reality</a> craze that&#8217;s going down lately. We launched <a href="http://www.peepthehole.com/" target="_new">this</a> a few weeks back.  We didn&#8217;t have much of a budget at all so it&#8217;s no great masterpiece and we&#8217;re relying on our target audience (8-18 years) not having been previously exposed to the technology, so hopefully they&#8217;ll find it fresh and fun.  Basically the packaging and magazine ads have the image needed for the experience, we&#8217;re not promoting it in any way, it&#8217;s just a <del>viral</del> seeded campaign. Here&#8217;s a neat example of how it works:</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/P150STjn6NA&amp;hl=en&amp;fs=1&amp;"><param name="allowFullScreen" value="true"><param name="allowscriptaccess" value="always"><embed src="http://www.youtube.com/v/P150STjn6NA&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>For the most part it seems many of the <a href="http://www.papervisionshowcase.com/category/augmented-reality/" target="_new">implementations</a> of this technology so far have been very gimmicky, though I just recently came across the <a href="https://www.prioritymail.com/simulator.asp" target="_new">USPS Package Simulator</a> which is the first practical usage of the technology I&#8217;ve seen.  Of course as practical as it seems to be, its real world usefulness could be limited which could land it back in the gimmick column, I don&#8217;t send packages ever so I just don&#8217;t know.</p>
<p>Gaming so far seems to be the best way to highlight this technology. And I really love what Topps has done, in a time when the baseball trading cards industry was in serious decline due to modern day gaming, they found a way to marry their product with gaming, by using the augmented reality technology. I&#8217;ve yet to try it out for real, though I keep telling myself I&#8217;ll buy a pack of baseball cards next time I&#8217;m at the 7-11. It looks really fun (as in innocent, simple fun), I hope it&#8217;s helping turn the industry around. Checkout the <a href="http://www.toppstown.com/UserSite/TotalImmersion/Instructions.html" target="_new">instructions</a> and watch the video below:</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/I7jm-AsY0lU&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/I7jm-AsY0lU&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>Another game I&#8217;ve come across, which is breaking away from the confines of the desktop, is a Tegra Zombie game.  I won&#8217;t go into it much, if you haven&#8217;t seen it yet it&#8217;s pretty amazing, just watch the video:</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/uGNgyGU-81E&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/uGNgyGU-81E&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>I can picture this taking place on a huge scale, the size of a football field or bigger, with hundreds of gamers walking around with the device in their hands, all connected wirelessly in one giant game!  And better yet the devices wouldn&#8217;t be hand held but tv goggles, and the buildings and zombies would be life size!  It&#8217;s really not that far away folks, in fact Jobs and Gates probably play this shit already in each others basements!</p>
<p>Of course all this isn&#8217;t really true augmented reality, it is to an extent, but it&#8217;s limited to a certain environment and true augmented reality lives in the real world.  This type of technology has just started coming out recently thanks to mobile devices with built-in camera, GPS, compass, and fast internet that are capable of placing what they see with pinpoint accuracy. I can barely imagine what&#8217;s to come, what&#8217;s currently being developed, or even what currently exists in some mad scientists laboratory. But check the following video out if you haven&#8217;t already.  It&#8217;s a true augmented reality app released by <a href="http://www.android.com/market/#app=wimbledon" target="_new">IBM for Android phones</a> for people wandering around at the Wimbledon tennis club.  With the entire Wimbledon complex tagged and hooked up to monitors you can look through your device and see what&#8217;s going on around you with supplemental information. I think what really blew me away was the fact you can look across the lawn club and see where all the restrooms are and it even shows you how long the lines are so you can make sure you join the one with the shortest wait!</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/7VZoDmqcZ34&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/7VZoDmqcZ34&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://pixelsfromtheedge.com/2009/06/more-augmented-reality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video Slideshows With Animoto</title>
		<link>http://pixelsfromtheedge.com/2009/06/video-slideshows-with-animoto/</link>
		<comments>http://pixelsfromtheedge.com/2009/06/video-slideshows-with-animoto/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 11:17:00 +0000</pubDate>
		<dc:creator>Richie</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[New Dad]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Apps]]></category>

		<guid isPermaLink="false">http://www.detroitdigitalrevolution.com/clients/me/blog/?p=33</guid>
		<description><![CDATA[Researching for a client recently I came across a neat little service called <a href="http://animoto.com/" target="_new">Animoto</a>.  The problem we had was needing a photo gallery that lives on a single page. Not a huge problem in itself and any of <a href="http://sixrevisions.com/javascript/free_javascript_image_galleries/" target="_new">these&#8230;</a> would work, or numerous others I&#8217;ve worked with or built over the years. But the issue here is the CMS we have to work with doesn&#8217;t have the ability to upload media, this has to be done separately via FTP, so it&#8217;s a messy process and not ideal to leave in the hands of the account team. So I figured]]></description>
			<content:encoded><![CDATA[<p>Researching for a client recently I came across a neat little service called <a href="http://animoto.com/" target="_new">Animoto</a>.  The problem we had was needing a photo gallery that lives on a single page. Not a huge problem in itself and any of <a href="http://sixrevisions.com/javascript/free_javascript_image_galleries/" target="_new">these</a> would work, or numerous others I&#8217;ve worked with or built over the years. But the issue here is the CMS we have to work with doesn&#8217;t have the ability to upload media, this has to be done separately via FTP, so it&#8217;s a messy process and not ideal to leave in the hands of the account team. So I figured the best option would be to find some third party service that we could embed, the files would live on a remote host and eliminate the need to upload files to our server.  So naturally I thought Flash would be a good fit for this and pretty quickly found myself at Animoto.</p>
<p><object id="vp1P2UV0" width="432" height="240" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"><param name="movie" value="http://static.animoto.com/swf/w.swf?w=swf/vp1&#038;e=1300976636&#038;f=P2UV0FuhLIqLL0dK1Nvs0A&#038;d=34&#038;m=b&#038;r=240p&#038;start_res=240p&#038;i=w&#038;options="></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed id="vp1P2UV0" src="http://static.animoto.com/swf/w.swf?w=swf/vp1&#038;e=1300976636&#038;f=P2UV0FuhLIqLL0dK1Nvs0A&#038;d=34&#038;m=b&#038;r=240p&#038;start_res=240p&#038;i=w&#038;options=" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="432" height="240"></embed></object></p>
<p>Dubbed &#8220;The end of slideshows&#8221; Animoto is a very tidy web application that instantly creates fun little video slideshows of a photo gallery.  It is very clean and easy-to-use, comprising of two simple steps &#8211; upload images and pick a background song (you can pick from a simple selection of provided songs or upload your own), and a then just wait out a few minutes of rendering time. Within minutes I&#8217;d created a neat little video slideshow of my boy, shown above.  It&#8217;s free to create a short 30 second video (12-15 photos recommended), and $3 to create a full length video or $30 for an unlimited amount for a full year and for $5 per video you can download it DVD quality.  There&#8217;s also a professional license for $249 per year which gives you everything included at no extra charge as well as allowing a call-to-action button, white labeling the video, free commercially licensed music, and of course all the videos you make are approved for commercial use.</p>
<p>And once you&#8217;ve created the video it&#8217;s available to post to any social media (using Clearspring) or embed in your blog. And you can create a remix, which can be a one-click automatic process, or you can edit the remix &#8211; revolving images, adding text, spotlighting, as well as adding or deleting images.  This is the one-click remix I made of the above video:</p>
<p><object id="vp1VY1fF" width="432" height="240" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"><param name="movie" value="http://static.animoto.com/swf/w.swf?w=swf/vp1&#038;e=1300976720&#038;f=VY1fFZqAfuBjU7vhO4ylSQ&#038;d=34&#038;m=b&#038;r=240p&#038;start_res=240p&#038;i=w&#038;options="></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed id="vp1VY1fF" src="http://static.animoto.com/swf/w.swf?w=swf/vp1&#038;e=1300976720&#038;f=VY1fFZqAfuBjU7vhO4ylSQ&#038;d=34&#038;m=b&#038;r=240p&#038;start_res=240p&#038;i=w&#038;options=" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="432" height="240"></embed></object></p>
<p>It wasn&#8217;t the ideal product for us to use for this particular project, but I was very impressed with the concept and the execution and it&#8217;s something I will be keeping in mind for the future.  For personal use I think I could have a lot of fun with it &#8211; converting family photo albums, and work party or street barbecue photo mashups, and the fact it comes as an <a href="http://animoto.com/iphone" target="_new">iPhone app</a> and I can instantly create the videos from my photo reel on-the-go, as well I have all the ones I&#8217;ve previously created with me at all times, is pretty awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://pixelsfromtheedge.com/2009/06/video-slideshows-with-animoto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Windowless Mode (wmode)</title>
		<link>http://pixelsfromtheedge.com/2009/05/flash-windowless-mode-wmode/</link>
		<comments>http://pixelsfromtheedge.com/2009/05/flash-windowless-mode-wmode/#comments</comments>
		<pubDate>Tue, 19 May 2009 14:45:00 +0000</pubDate>
		<dc:creator>Richie</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.detroitdigitalrevolution.com/clients/me/blog/?p=24</guid>
		<description><![CDATA[Just over a year ago when we were done ideating the &#8220;nextgen&#8221; Ford vehicles site and moved into prototyping and early production I put this document together.  Disabling wmode had long been the practice of my company and being on the team charged with developing the next generation site we felt that enabling it was a compulsory step to stay competitive with our websites moving forward.  It stemmed from a discussion with our multimedia team, I can&#8217;t remember now the exact words they used but according to them the whole idea of wmode was a bad hack by the Flash&#8230;]]></description>
			<content:encoded><![CDATA[<p>Just over a year ago when we were done ideating the &#8220;nextgen&#8221; Ford vehicles site and moved into prototyping and early production I put this document together.  Disabling wmode had long been the practice of my company and being on the team charged with developing the next generation site we felt that enabling it was a compulsory step to stay competitive with our websites moving forward.  It stemmed from a discussion with our multimedia team, I can&#8217;t remember now the exact words they used but according to them the whole idea of wmode was a bad hack by the Flash development team many years ago and it was the industry practice to never used it.  Until then the Ford site had been a pure Flash site so the issue had never seriously arisen, but our whole strategy moving forward was for the site to be pure HTML (with Flash nuggets) so it was imperative that the we enabled wmode moving forward.  My aim was to prove that the idea of wmode being bad was ancient and that it was now the common practice to enable it, which I think I did quite nicely and it hasn&#8217;t ever come up again.</p>
<p>I wonder what experiences others have regarding this?  Was it your practice to not enable it and you now do?  Or maybe you still don&#8217;t?  Or maybe you never did?</p>
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style=";font-family:Helv;font-size:12;">Next Gen and Flash Windowless Mode</span></strong></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"> </span></p>
<p class="MsoNormal"><strong><span style="text-decoration: underline;"><span style=";font-family:Helv;font-size:9;">What is Windowless Mode?</span></span></strong></p>
<p class="MsoNormal"><span style=";font-family:Helvetica;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helvetica;font-size:9;">Windowless Mode (WMODE) enables control over Flash applications within a webpage.<span> </span>It is necessary to enable WMODE to allow JavaScript and CSS to fully control the layout and functionality of a webpage that includes a Flash app.<span> </span>Its main benefits include:</span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Symbol;font-size:9;"><span>·<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><span style=";font-family:Helvetica;font-size:9;">Stacking – allow the flash object to go on top of some elements but underneath others</span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Symbol;font-size:9;"><span>·<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><span style=";font-family:Helvetica;font-size:9;">Transparency – show content beneath the flash object</span></p>
<p class="MsoNormal"><span style=";font-family:Helvetica;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helvetica;font-size:9;">The default WMODE is <strong>Window</strong>.<span> </span>When a Flash app is in its default mode it actually doesn’t belong to the browser, even though it appears to.<span> </span>It is most efficient for Flash to draw this way and this is the fastest, most efficient rendering mode.<span> </span>The other two are:</span><span style="font-size:10;"></span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Symbol;font-size:9;"><span>·<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><strong><span style=";font-family:Helvetica;font-size:9;">Opaque</span></strong><span style=";font-family:Helvetica;font-size:9;">: Enables stacking</span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Symbol;font-size:9;"><span>·<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><strong><span style=";font-family:Helvetica;font-size:9;">Transparent</span></strong><span style=";font-family:Helvetica;font-size:9;">: Enables stacking and transparency, is the most processor intense</span><span style=";font-family:Helv;font-size:9;"></span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"> </span></p>
<p class="MsoNormal"><span style="text-decoration: underline;"><span style=";font-family:Helv;font-size:9;">Examples:</span></span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;">Disabled</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.communitymx.com/content/source/E5141/wmodenone.htm">http://www.communitymx.com/content/source/E5141/wmodenone.htm</a></span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;">Opaque</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.communitymx.com/content/source/E5141/wmodeopaque.htm">http://www.communitymx.com/content/source/E5141/wmodeopaque.htm</a></span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;">Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.communitymx.com/content/source/E5141/wmodetrans.htm">http://www.communitymx.com/content/source/E5141/wmodetrans.htm</a></span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"> </span></p>
<p class="MsoNormal"><strong><span style="text-decoration: underline;"><span style=";font-family:Helv;font-size:9;">Who has WMODE enabled?</span></span></strong></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;">Sample of Alexa.com top 50 ranking sites that have WMODE enabled:</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.yahoo.com/">http://www.yahoo.com/</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://espn.go.com/">http://espn.go.com/</a> &#8211; Opaque</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.cnn.com/">http://www.cnn.com/</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.flickr.com/">http://www.flickr.com/</a> &#8211; Opaque</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.weather.com/">http://www.weather.com/</a> &#8211; Opaque</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://dashboard.aim.com/aim">http://dashboard.aim.com/aim</a> &#8211; Opaque</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.nytimes.com/">http://www.nytimes.com/</a> &#8211; Opaque</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="https://www.bankofamerica.com/index.jsp">https://www.bankofamerica.com/index.jsp</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.nba.com/playoffs2008/index.html">http://www.nba.com/playoffs2008/index.html</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.bbc.co.uk/?ok">http://www.bbc.co.uk/?ok</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.cnet.com/">http://www.cnet.com/</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.netflix.com/">http://www.netflix.com/</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.adobe.com/">http://www.adobe.com/</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://abc.go.com/">http://abc.go.com/</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;">Sample of competitor sites:-</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.toyota.com/">http://www.toyota.com/</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.chevrolet.com/">http://www.chevrolet.com/</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.chrysler.com/en/">http://www.chrysler.com/en/</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.audiusa.com/audi/us/en2.html">http://www.audiusa.com/audi/us/en2.html</a> &#8211; Opaque</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.gm.com/shop/">http://www.gm.com/shop/</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.hyundaiusa.com/index.aspx">http://www.hyundaiusa.com/index.aspx</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.jeep.com/en/">http://www.jeep.com/en/</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.dodge.com/en/">http://www.dodge.com/en/</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.bmwusa.com/Default.aspx">http://www.bmwusa.com/Default.aspx</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.ferraristore.com/">http://www.ferraristore.com/</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.saturn.com/saturn/SaturnIndex.jsp">http://www.saturn.com/saturn/SaturnIndex.jsp</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.miniusa.com/#/MINIUSA.COM-m">http://www.miniusa.com/#/MINIUSA.COM-m</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://automobiles.honda.com/">http://automobiles.honda.com/</a> &#8211; Opaque</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.mazdausa.com/MusaWeb/displayHomepage.action?bhcp=1">http://www.mazdausa.com/MusaWeb/displayHomepage.action?bhcp=1</a> – Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"><a href="http://www.gmperformanceparts.com/">http://www.gmperformanceparts.com/</a> &#8211; Transparent</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"> </span></p>
<p class="MsoNormal"><strong><span style="text-decoration: underline;"><span style=";font-family:Helv;font-size:9;">Known issues</span></span></strong></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;">In IE frame count stays current but interval count lags behind:</span></p>
<p class="MsoNormal" style=""><span style=";font-family:Helv;font-size:9;"><a href="http://justin.everett-church.com/wmode/">http://justin.everett-church.com/wmode/</a></span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Helv;font-size:9;"><span>-<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><span style=";font-family:Helv;font-size:9;">Only affects user experience if flash requires a high refresh rate, such as games</span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Helv;font-size:9;"><span>-<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><span style=";font-family:Helv;font-size:9;">Avoid WMODE for these apps</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;">Animation slow and jumpy with slow processors:</span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Helv;font-size:9;"><span>-<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><span style=";font-family:Helv;font-size:9;">Our sites currently already experience this with the full flash framework without WMODE enabled, though an html version is available</span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Helv;font-size:9;"><span>-<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><span style=";font-family:Helv;font-size:9;">HTML site will provide more seamless experience with only Flash apps being affected</span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Helv;font-size:9;"><span>-<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><span style=";font-family:Helv;font-size:9;">Capture slow experience and offer alternative content?</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;">In Firefox text entry fields do not function correctly with international keyboards:</span></p>
<p class="MsoNormal" style=""><span style=";font-family:Helv;font-size:9;"><a href="http://www.5etdemi.com/blog/archives/2005/06/firefox-wmodetransparent-is-completely-screwy-and-breaks-textfields/">http://www.5etdemi.com/blog/archives/2005/06/firefox-wmodetransparent-is-completely-screwy-and-breaks-textfields/</a></span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Helv;font-size:9;"><span>-<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><span style=";font-family:Helv;font-size:9;">Only applies to user input</span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Helv;font-size:9;"><span>-<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><span style=";font-family:Helv;font-size:9;">Barely applies to sites built to only serve North America</span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Helv;font-size:9;"><span>-<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><span style=";font-family:Helv;font-size:9;">Make sure input is captured outside of Flash</span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Helv;font-size:9;"><span>-<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><span style=";font-family:Helv;font-size:9;">Disable WMODE for flash modules requiring input</span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Helv;font-size:9;"><span>-<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><span style=";font-family:Helv;font-size:9;">Hacks can be applied to the flash is necessary</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;">Mac Firefox Flash disappears when using translucent overlays:</span></p>
<p class="MsoNormal" style=""><span style=";font-family:Helv;font-size:9;"><a href="http://www.hedgerwow.com/360/bugs/opacity-disable-flash-on-mac-firefox.html">http://www.hedgerwow.com/360/bugs/opacity-disable-flash-on-mac-firefox.html</a></span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Helv;font-size:9;"><span>-<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><span style=";font-family:Helv;font-size:9;">Avoid translucent overlays with Flash</span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Helv;font-size:9;"><span>-<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><span style=";font-family:Helv;font-size:9;">If absolutely necessary use base 64 encoding for translucent image</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;">Screen Readers cannot see Flash when WMODE is enabled:</span></p>
<p class="MsoNormal" style=""><span style=";font-family:Helv;font-size:9;"><a href="http://dynamicflash.com/2006/10/flash-accessibility-and-wmode/">http://dynamicflash.com/2006/10/flash-accessibility-and-wmode/</a></span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Helv;font-size:9;"><span>-<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><span style=";font-family:Helv;font-size:9;">Use html instead of flash for blocks of text</span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Helv;font-size:9;"><span>-<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><span style=";font-family:Helv;font-size:9;">Make text contained within Flash available outside of Flash</span></p>
<p class="MsoNormal" style=""><!--[if !supportLists]--><span style=";font-family:Helv;font-size:9;"><span>-<span style=";font-family:&quot;;font-size:7;"> </span></span></span><!--[endif]--><span style=";font-family:Helv;font-size:9;">Current site lacks accessibility and HTML/CSS layout will go a long way to improve this</span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helv;font-size:9;"> </span></p>
<p class="MsoNormal"><strong><span style="text-decoration: underline;"><span style=";font-family:Helv;font-size:9;">Supported Browsers and Platforms</span></span></strong></p>
<p class="MsoNormal"><strong><span style=";font-family:Helvetica;font-size:9;"> </span></strong></p>
<p class="MsoNormal"><span style=";font-family:Helvetica;font-size:9;">All our supported browsers and platforms allow WMODE to be enabled.</span></p>
<p class="MsoNormal"><span style=";font-family:Helvetica;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helvetica;font-size:9;"> </span></p>
<p class="MsoNormal"><strong><span style="text-decoration: underline;"><span style=";font-family:Helvetica;font-size:9;">Conclusion</span></span></strong></p>
<p class="MsoNormal"><span style=";font-family:Helvetica;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helvetica;font-size:9;">It is important to enable WMODE for modern web page design and functionality.<span> </span>We must embrace WMODE to remain competitive.<span> </span>There are negative issues surrounding WMODE but they can be eliminated by being aware of these issues at design and development stage as the majority of our Flash needs are not CPU intensive.<span> </span>The users negatively impacted by WMODE are a tiny minority.<span> </span>Only enable WMODE when necessary, using opaque setting over transparent when possible.<span> </span>If a Flash app is severely affected by WMODE find a seamless way to serve it with WMODE disabled.</span></p>
<p class="MsoNormal"><span style=";font-family:Helvetica;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helvetica;font-size:9;"> </span></p>
<p class="MsoNormal"><strong><span style="text-decoration: underline;"><span style=";font-family:Helvetica;font-size:9;">Sources</span></span></strong></p>
<p class="MsoNormal"><span style=";font-family:Helvetica;font-size:9;"> </span></p>
<p class="MsoNormal"><span style=";font-family:Helvetica;font-size:9;"><a href="http://www.communitymx.com/content/article.cfm?cid=e5141">http://www.communitymx.com/content/article.cfm?cid=e5141</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://pixelsfromtheedge.com/2009/05/flash-windowless-mode-wmode/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

