<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: No wmode please, we&#8217;re British! AKA the @ key flash bug</title>
	<atom:link href="http://blog.headlondon.com/2006/06/02/no-wmode-please-were-british/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.headlondon.com/2006/06/02/no-wmode-please-were-british/</link>
	<description>Digital design agency, creative content, brand identity, web development, online marketing, application creation, integrated</description>
	<lastBuildDate>Wed, 29 Jun 2011 13:47:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Karl</title>
		<link>http://blog.headlondon.com/2006/06/02/no-wmode-please-were-british/comment-page-1/#comment-9845</link>
		<dc:creator>Karl</dc:creator>
		<pubDate>Wed, 01 Jun 2011 12:16:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.headlondon.com/archives/no-wmode-please-were-british/#comment-9845</guid>
		<description>I wrote a fix for this in AS2.0 that works 100% for @ email fields:
http://pastebin.com/iBh4fKQB</description>
		<content:encoded><![CDATA[<p>I wrote a fix for this in AS2.0 that works 100% for @ email fields:<br />
<a href="http://pastebin.com/iBh4fKQB" rel="nofollow">http://pastebin.com/iBh4fKQB</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://blog.headlondon.com/2006/06/02/no-wmode-please-were-british/comment-page-1/#comment-9792</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Mon, 04 Oct 2010 08:48:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.headlondon.com/archives/no-wmode-please-were-british/#comment-9792</guid>
		<description>This is insane, what the hell does the handling of a wmode have to do with handling keyboard input? How the can they couple those pieces of code? It doesn&#039;t make any sense at all. No wonder this kind of bugs crop up if Firefox or Adobe screws their coding up so bad.</description>
		<content:encoded><![CDATA[<p>This is insane, what the hell does the handling of a wmode have to do with handling keyboard input? How the can they couple those pieces of code? It doesn&#8217;t make any sense at all. No wonder this kind of bugs crop up if Firefox or Adobe screws their coding up so bad.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: What&#8217;s wrong with Flash&#8217;s keyboard mapping? &#124; The Flashchemist</title>
		<link>http://blog.headlondon.com/2006/06/02/no-wmode-please-were-british/comment-page-1/#comment-9698</link>
		<dc:creator>What&#8217;s wrong with Flash&#8217;s keyboard mapping? &#124; The Flashchemist</dc:creator>
		<pubDate>Thu, 10 Sep 2009 05:11:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.headlondon.com/archives/no-wmode-please-were-british/#comment-9698</guid>
		<description>[...] http://blog.headlondon.com/2006/06/02/no-wmode-please-were-british/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://blog.headlondon.com/2006/06/02/no-wmode-please-were-british/" rel="nofollow">http://blog.headlondon.com/2006/06/02/no-wmode-please-were-british/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Jones</title>
		<link>http://blog.headlondon.com/2006/06/02/no-wmode-please-were-british/comment-page-1/#comment-9678</link>
		<dc:creator>Steve Jones</dc:creator>
		<pubDate>Fri, 03 Jul 2009 10:53:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.headlondon.com/archives/no-wmode-please-were-british/#comment-9678</guid>
		<description>The wmode bug doesn&#039;t only cause this problem... its actually crashing a large app of ours in Windows Firefox. Remove the wmode setting and all runs sweetly. What a nightmare!</description>
		<content:encoded><![CDATA[<p>The wmode bug doesn&#8217;t only cause this problem&#8230; its actually crashing a large app of ours in Windows Firefox. Remove the wmode setting and all runs sweetly. What a nightmare!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: olimax</title>
		<link>http://blog.headlondon.com/2006/06/02/no-wmode-please-were-british/comment-page-1/#comment-9668</link>
		<dc:creator>olimax</dc:creator>
		<pubDate>Fri, 01 May 2009 10:57:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.headlondon.com/archives/no-wmode-please-were-british/#comment-9668</guid>
		<description>Thank you all. This had driven me nuts. Why this bug has not been fixed after so long is a mystery.
I used a simpler version of Kevins workaround. This should be work with Spanish issues as well.

emailbox.onChanged = function(textfield_txt:TextField) 
{
	var stlen = textfield_txt.text.length;
	if(Key.getAscii() == 34 &#124;&#124; Key.getAscii() == 64 ) 
	{
		textfield_txt.text = textfield_txt.text.substring(0,stlen-1) + &quot;@&quot;;
		
	}
};</description>
		<content:encoded><![CDATA[<p>Thank you all. This had driven me nuts. Why this bug has not been fixed after so long is a mystery.<br />
I used a simpler version of Kevins workaround. This should be work with Spanish issues as well.</p>
<p>emailbox.onChanged = function(textfield_txt:TextField)<br />
{<br />
	var stlen = textfield_txt.text.length;<br />
	if(Key.getAscii() == 34 || Key.getAscii() == 64 )<br />
	{<br />
		textfield_txt.text = textfield_txt.text.substring(0,stlen-1) + &#8220;@&#8221;;</p>
<p>	}<br />
};</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: doctorkhazim</title>
		<link>http://blog.headlondon.com/2006/06/02/no-wmode-please-were-british/comment-page-1/#comment-9666</link>
		<dc:creator>doctorkhazim</dc:creator>
		<pubDate>Sun, 12 Apr 2009 18:38:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.headlondon.com/archives/no-wmode-please-were-british/#comment-9666</guid>
		<description>The same erros occurs with Spanish keymapping. You’ll get an “2” when trying to type an @.</description>
		<content:encoded><![CDATA[<p>The same erros occurs with Spanish keymapping. You’ll get an “2” when trying to type an @.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tråkigaste buggen ever &#171; Locolabs&#8217;s Blog</title>
		<link>http://blog.headlondon.com/2006/06/02/no-wmode-please-were-british/comment-page-1/#comment-9663</link>
		<dc:creator>Tråkigaste buggen ever &#171; Locolabs&#8217;s Blog</dc:creator>
		<pubDate>Thu, 26 Mar 2009 15:14:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.headlondon.com/archives/no-wmode-please-were-british/#comment-9663</guid>
		<description>[...] tvåan så funkar det. Läs även: http://flashmonk.blogspot.com/2007/08/wmode-key-flash-bug.html http://blog.headlondon.com/2006/06/02/no-wmode-please-were-british/ [...]</description>
		<content:encoded><![CDATA[<p>[...] tvåan så funkar det. Läs även: <a href="http://flashmonk.blogspot.com/2007/08/wmode-key-flash-bug.html" rel="nofollow">http://flashmonk.blogspot.com/2007/08/wmode-key-flash-bug.html</a> <a href="http://blog.headlondon.com/2006/06/02/no-wmode-please-were-british/" rel="nofollow">http://blog.headlondon.com/2006/06/02/no-wmode-please-were-british/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vicky</title>
		<link>http://blog.headlondon.com/2006/06/02/no-wmode-please-were-british/comment-page-1/#comment-9657</link>
		<dc:creator>Vicky</dc:creator>
		<pubDate>Tue, 03 Mar 2009 14:10:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.headlondon.com/archives/no-wmode-please-were-british/#comment-9657</guid>
		<description>In Firefox 3, with wmode=opaque enabled, I am not able to type &#039;=&#039;, when I try to type &#039;=&#039; I get &#039;+&#039;.</description>
		<content:encoded><![CDATA[<p>In Firefox 3, with wmode=opaque enabled, I am not able to type &#8216;=&#8217;, when I try to type &#8216;=&#8217; I get &#8216;+&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danilo</title>
		<link>http://blog.headlondon.com/2006/06/02/no-wmode-please-were-british/comment-page-1/#comment-8971</link>
		<dc:creator>Danilo</dc:creator>
		<pubDate>Fri, 16 Jan 2009 10:43:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.headlondon.com/archives/no-wmode-please-were-british/#comment-8971</guid>
		<description>The problem occurs with Spanish keyboards too.
Still looking for a workaround/fix.</description>
		<content:encoded><![CDATA[<p>The problem occurs with Spanish keyboards too.<br />
Still looking for a workaround/fix.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Lemon</title>
		<link>http://blog.headlondon.com/2006/06/02/no-wmode-please-were-british/comment-page-1/#comment-8664</link>
		<dc:creator>Paul Lemon</dc:creator>
		<pubDate>Mon, 05 Jan 2009 14:36:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.headlondon.com/archives/no-wmode-please-were-british/#comment-8664</guid>
		<description>There is a javascript solution which solves this problem in firefox (but not for Safari/Chrome on a PC)

http://analogcode.com/p/JSTextReader/</description>
		<content:encoded><![CDATA[<p>There is a javascript solution which solves this problem in firefox (but not for Safari/Chrome on a PC)</p>
<p><a href="http://analogcode.com/p/JSTextReader/" rel="nofollow">http://analogcode.com/p/JSTextReader/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

