<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Bug in Firefox 3.0.1 MAC</title>
	<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/</link>
	<description>Lessrain Blog</description>
	<pubDate>Sun, 21 Mar 2010 02:51:14 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>By: artur</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-139308</link>
		<dc:creator>artur</dc:creator>
		<pubDate>Thu, 01 Oct 2009 18:14:12 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-139308</guid>
		<description>&lt;p&gt;bug isnt fixed..even with vrsn SWFAddress  2.4&lt;/p&gt;

&lt;p&gt;see MSLK.com&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>bug isnt fixed..even with vrsn SWFAddress  2.4</p>
<p>see MSLK.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wynand</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-138957</link>
		<dc:creator>Wynand</dc:creator>
		<pubDate>Thu, 06 Aug 2009 08:08:32 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-138957</guid>
		<description>&lt;p&gt;Just download version 2.3 from http://www.asual.com/swfaddress/, solves all the above.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Just download version 2.3 from <a href="http://www.asual.com/swfaddress/," rel="nofollow">http://www.asual.com/swfaddress/,</a> solves all the above.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-138140</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sat, 14 Feb 2009 07:25:01 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-138140</guid>
		<description>&lt;p&gt;By the way SWFAddress 2.2 was released with a fix:
-Build-in fix for the Firefox 3/Mac OSX blinking effect.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>By the way SWFAddress 2.2 was released with a fix:<br />
-Build-in fix for the Firefox 3/Mac OSX blinking effect.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-138137</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sat, 14 Feb 2009 05:20:48 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-138137</guid>
		<description>&lt;p&gt;Thanks! This had me stumped, didn't know my flickering was due to Mac + Firefox 3 + SWFAddress.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks! This had me stumped, didn&#8217;t know my flickering was due to Mac + Firefox 3 + SWFAddress.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: I like to play</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-138087</link>
		<dc:creator>I like to play</dc:creator>
		<pubDate>Tue, 27 Jan 2009 17:16:10 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-138087</guid>
		<description>&lt;p&gt;Thanks so much for this post - I was pulling my hair out over this, thinking it was maybe an extra refresh of the entire site called by swfAdress - fortunately it wasn't :-)
Great tip about the delay... thanks again :-)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks so much for this post - I was pulling my hair out over this, thinking it was maybe an extra refresh of the entire site called by swfAdress - fortunately it wasn&#8217;t <img src='http://www.blog.lessrain.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> Great tip about the delay&#8230; thanks again <img src='http://www.blog.lessrain.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: espy</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-138044</link>
		<dc:creator>espy</dc:creator>
		<pubDate>Wed, 07 Jan 2009 13:02:10 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-138044</guid>
		<description>&lt;p&gt;Hey there, thanks for the useful post and comments, I managed to get rid of the flashing in Firefox on Mac with their help.&lt;/p&gt;

&lt;p&gt;Since the variables seem to be different in every version of swfAddress, here's a version-neutral way of doing it:&lt;/p&gt;

&lt;p&gt;Find "this.setValue=function(VAR){" in the swfaddress.js, where VAR is something like _64 or similar. Replace that whole bit with&lt;/p&gt;

&lt;p&gt;starts here --&#62;this.setValue=function(VAR){
if(navigator.userAgent.indexOf("Firefox") &#62;= 0 &#38;&#38; navigator.userAgent.indexOf("Mac") &#62;= 0) {
setTimeout("SWFAddress.setValueWithDelay('"+VAR+"');",500);
}
else{
SWFAddress.setValueWithDelay(VAR);
}
};
this.setValueWithDelay=function(_64) {&#60;-- ends here&lt;/p&gt;

&lt;p&gt;Remember to exchange VAR back to what it was, like _64. &lt;/p&gt;

&lt;p&gt;This will add a delay only in Firefox on Macs.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hey there, thanks for the useful post and comments, I managed to get rid of the flashing in Firefox on Mac with their help.</p>
<p>Since the variables seem to be different in every version of swfAddress, here&#8217;s a version-neutral way of doing it:</p>
<p>Find &#8220;this.setValue=function(VAR){&#8221; in the swfaddress.js, where VAR is something like _64 or similar. Replace that whole bit with</p>
<p>starts here &#8211;&gt;this.setValue=function(VAR){<br />
if(navigator.userAgent.indexOf(&#8221;Firefox&#8221;) &gt;= 0 &amp;&amp; navigator.userAgent.indexOf(&#8221;Mac&#8221;) &gt;= 0) {<br />
setTimeout(&#8221;SWFAddress.setValueWithDelay(&#8217;&#8221;+VAR+&#8221;&#8216;);&#8221;,500);<br />
}<br />
else{<br />
SWFAddress.setValueWithDelay(VAR);<br />
}<br />
};<br />
this.setValueWithDelay=function(_64) {&lt;&#8211; ends here</p>
<p>Remember to exchange VAR back to what it was, like _64. </p>
<p>This will add a delay only in Firefox on Macs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: soenke</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137845</link>
		<dc:creator>soenke</dc:creator>
		<pubDate>Wed, 05 Nov 2008 12:54:13 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137845</guid>
		<description>&lt;p&gt;you have to replace the line
this.setValue=function(value) {&lt;/p&gt;

&lt;p&gt;with this code:&lt;/p&gt;

&lt;p&gt;this.setValue=function(value){
            if(_browser.isFirefox()){
                setTimeout("SWFAddress.setValueWithDelay('"+value+"');",500);
            }
            else{
                SWFAddress.setValueWithDelay(value);
            }
        };&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;    this.setValueWithDelay=function(value) {
&lt;/code&gt;&lt;/pre&gt;
</description>
		<content:encoded><![CDATA[<p>you have to replace the line<br />
this.setValue=function(value) {</p>
<p>with this code:</p>
<p>this.setValue=function(value){<br />
            if(_browser.isFirefox()){<br />
                setTimeout(&#8221;SWFAddress.setValueWithDelay(&#8217;&#8221;+value+&#8221;&#8216;);&#8221;,500);<br />
            }<br />
            else{<br />
                SWFAddress.setValueWithDelay(value);<br />
            }<br />
        };</p>
<pre><code>    this.setValueWithDelay=function(value) {
</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Kaplan</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137780</link>
		<dc:creator>David Kaplan</dc:creator>
		<pubDate>Tue, 14 Oct 2008 20:29:19 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137780</guid>
		<description>&lt;p&gt;I've noticed I'll get the flicker if I use onMouseUp.&lt;/p&gt;

&lt;p&gt;I just started using swfAddress and didn't see a flicker in my learning url. And didn't see any flicker in a new site build where I'm using swfAddress ... for a while, then after I added a scrolling text box that uses dragger.onMouseUp = function() ... bam, flicker. I switched the onMouseUp to onRelease and the flicker stopped. &lt;/p&gt;

&lt;p&gt;Just thought I'd offer that up as something I've noticed, maybe I was using onMouseUp incorrectly to begin with.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I&#8217;ve noticed I&#8217;ll get the flicker if I use onMouseUp.</p>
<p>I just started using swfAddress and didn&#8217;t see a flicker in my learning url. And didn&#8217;t see any flicker in a new site build where I&#8217;m using swfAddress &#8230; for a while, then after I added a scrolling text box that uses dragger.onMouseUp = function() &#8230; bam, flicker. I switched the onMouseUp to onRelease and the flicker stopped. </p>
<p>Just thought I&#8217;d offer that up as something I&#8217;ve noticed, maybe I was using onMouseUp incorrectly to begin with.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Salzer</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137632</link>
		<dc:creator>David Salzer</dc:creator>
		<pubDate>Tue, 23 Sep 2008 19:17:23 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137632</guid>
		<description>&lt;p&gt;We are working on a large project using deep linking without SWFAddress, and having the same issue. We are using simple BrowserManager - So I bealive the problem is ExternalInterface&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>We are working on a large project using deep linking without SWFAddress, and having the same issue. We are using simple BrowserManager - So I bealive the problem is ExternalInterface</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcel-André Casasola Merkle</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137628</link>
		<dc:creator>Marcel-André Casasola Merkle</dc:creator>
		<pubDate>Mon, 22 Sep 2008 22:13:39 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137628</guid>
		<description>&lt;p&gt;Hello Diego,&lt;/p&gt;

&lt;p&gt;I never used SWFObject so I am quite sure the ExternalInterface calls are the problem. But as this bug only surfaces in Firefox 3 Mac I suppose it is all the browsers fault and should be fixed there. &lt;/p&gt;

&lt;p&gt;Until anybody will do this I propose modifying the javascript of SWFAdress but as the people over at Asual told me maybe adding a setTimeout() to the SWFAddress AS3 portion may do the trick as well or even better.&lt;/p&gt;

&lt;p&gt;I prefer changing SWFAddress above doing it in my code because SWFAddress is commonly used and so I only have to change it once for all my projects.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hello Diego,</p>
<p>I never used SWFObject so I am quite sure the ExternalInterface calls are the problem. But as this bug only surfaces in Firefox 3 Mac I suppose it is all the browsers fault and should be fixed there. </p>
<p>Until anybody will do this I propose modifying the javascript of SWFAdress but as the people over at Asual told me maybe adding a setTimeout() to the SWFAddress AS3 portion may do the trick as well or even better.</p>
<p>I prefer changing SWFAddress above doing it in my code because SWFAddress is commonly used and so I only have to change it once for all my projects.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: diego</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137622</link>
		<dc:creator>diego</dc:creator>
		<pubDate>Sun, 21 Sep 2008 17:54:02 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137622</guid>
		<description>&lt;p&gt;hi to all,
i did some fast test and it seems that the problem is the swfobject and not the swfaddress: i'm working on a project using swfaddress 2.1 and swf object 1.4.4 and i don't have any kind of flickering.
this is not the first time i saw "white flash" during rendering and in the past the swfobject and css get me a lot of rendering problem, so try with an older version and see...&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>hi to all,<br />
i did some fast test and it seems that the problem is the swfobject and not the swfaddress: i&#8217;m working on a project using swfaddress 2.1 and swf object 1.4.4 and i don&#8217;t have any kind of flickering.<br />
this is not the first time i saw &#8220;white flash&#8221; during rendering and in the past the swfobject and css get me a lot of rendering problem, so try with an older version and see&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sitron</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137611</link>
		<dc:creator>sitron</dc:creator>
		<pubDate>Fri, 19 Sep 2008 07:39:27 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137611</guid>
		<description>&lt;p&gt;safari is working ok here. (except that if you have a scroller the flash only renders on the visible height (!= 100%) of the screen... the rest being yellow... but that's another story!)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>safari is working ok here. (except that if you have a scroller the flash only renders on the visible height (!= 100%) of the screen&#8230; the rest being yellow&#8230; but that&#8217;s another story!)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Miles Lukas</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137608</link>
		<dc:creator>Miles Lukas</dc:creator>
		<pubDate>Thu, 18 Sep 2008 23:00:33 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137608</guid>
		<description>&lt;p&gt;I believe I also got the same bug in Safari. Anyone else?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I believe I also got the same bug in Safari. Anyone else?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luis</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137601</link>
		<dc:creator>Luis</dc:creator>
		<pubDate>Wed, 17 Sep 2008 06:24:14 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137601</guid>
		<description>&lt;p&gt;Hi Marcel,&lt;/p&gt;

&lt;p&gt;Your solution for the SWFAddress should do the job in this specific case where SWFAddress is used.&lt;/p&gt;

&lt;p&gt;At the moment adding a delay betwen Flash and JS seems to be the only solution.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Marcel,</p>
<p>Your solution for the SWFAddress should do the job in this specific case where SWFAddress is used.</p>
<p>At the moment adding a delay betwen Flash and JS seems to be the only solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcel-André Casasola Merkle</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137597</link>
		<dc:creator>Marcel-André Casasola Merkle</dc:creator>
		<pubDate>Tue, 16 Sep 2008 23:33:18 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137597</guid>
		<description>&lt;p&gt;A little correction:&lt;/p&gt;

&lt;p&gt;you must replace&lt;/p&gt;

&lt;p&gt;this.setValue=function&lt;/p&gt;

&lt;p&gt;with the following term.&lt;/p&gt;

&lt;p&gt;Best regards
Macm&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>A little correction:</p>
<p>you must replace</p>
<p>this.setValue=function</p>
<p>with the following term.</p>
<p>Best regards<br />
Macm</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcel-André Casasola Merkle</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137596</link>
		<dc:creator>Marcel-André Casasola Merkle</dc:creator>
		<pubDate>Tue, 16 Sep 2008 21:24:18 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137596</guid>
		<description>&lt;p&gt;Inspired by your post I tried to simply fix the issue by modifying SWFAddress:&lt;/p&gt;

&lt;p&gt;I changed&lt;/p&gt;

&lt;p&gt;this.setValue&lt;/p&gt;

&lt;p&gt;to&lt;/p&gt;

&lt;p&gt;this.setValue=function(&lt;em&gt;7e){if(&lt;/em&gt;21.isFirefox()){setTimeout("SWFAddress.setValueWithDelay('"+&lt;em&gt;7e+"');",500);}else{SWFAddress.setValueWithDelay(&lt;/em&gt;7e)}};this.setValueWithDelay=function&lt;/p&gt;

&lt;p&gt;including a delay if Firefox is the browser.&lt;/p&gt;

&lt;p&gt;It works for my project but it would be nice to hear if it also solves the problem for others.&lt;/p&gt;

&lt;p&gt;Macm&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Inspired by your post I tried to simply fix the issue by modifying SWFAddress:</p>
<p>I changed</p>
<p>this.setValue</p>
<p>to</p>
<p>this.setValue=function(<em>7e){if(</em>21.isFirefox()){setTimeout(&#8221;SWFAddress.setValueWithDelay(&#8217;&#8221;+<em>7e+&#8221;&#8216;);&#8221;,500);}else{SWFAddress.setValueWithDelay(</em>7e)}};this.setValueWithDelay=function</p>
<p>including a delay if Firefox is the browser.</p>
<p>It works for my project but it would be nice to hear if it also solves the problem for others.</p>
<p>Macm</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcel-André Casasola Merkle</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137595</link>
		<dc:creator>Marcel-André Casasola Merkle</dc:creator>
		<pubDate>Tue, 16 Sep 2008 21:20:32 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137595</guid>
		<description>&lt;p&gt;Possible solution/fix for SWFAddress and Firefox issue&lt;/p&gt;

&lt;p&gt;Hello!&lt;/p&gt;

&lt;p&gt;It's a very annoying bug and all I could find on the internet is the proposal to put a delay between "SWFAddress.setValue(theValue);" and heavy calculating in Flash. But it doesn't really work for my project and I keep getting random flickering effects.&lt;/p&gt;

&lt;p&gt;So your post (especially the line setTimeout(”alert(’test 1 with timeout’)”, 1000);) inspired me to simply modify SWFAddress and add the delay THERE.&lt;/p&gt;

&lt;p&gt;And (as I can tell for now) it works.&lt;/p&gt;

&lt;p&gt;I replaced:&lt;/p&gt;

&lt;p&gt;this.setValue=function&lt;/p&gt;

&lt;p&gt;with&lt;/p&gt;

&lt;p&gt;this.setValue=function(&lt;em&gt;7e){if(&lt;/em&gt;21.isFirefox()){setTimeout("SWFAddress.setValueWithDelay('"+&lt;em&gt;7e+"');",500);}else{SWFAddress.setValueWithDelay(&lt;/em&gt;7e)}};this.setValueWithDelay=function&lt;/p&gt;

&lt;p&gt;I would be very eager to hear about your experience with this little code snippet.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Possible solution/fix for SWFAddress and Firefox issue</p>
<p>Hello!</p>
<p>It&#8217;s a very annoying bug and all I could find on the internet is the proposal to put a delay between &#8220;SWFAddress.setValue(theValue);&#8221; and heavy calculating in Flash. But it doesn&#8217;t really work for my project and I keep getting random flickering effects.</p>
<p>So your post (especially the line setTimeout(”alert(’test 1 with timeout’)”, 1000);) inspired me to simply modify SWFAddress and add the delay THERE.</p>
<p>And (as I can tell for now) it works.</p>
<p>I replaced:</p>
<p>this.setValue=function</p>
<p>with</p>
<p>this.setValue=function(<em>7e){if(</em>21.isFirefox()){setTimeout(&#8221;SWFAddress.setValueWithDelay(&#8217;&#8221;+<em>7e+&#8221;&#8216;);&#8221;,500);}else{SWFAddress.setValueWithDelay(</em>7e)}};this.setValueWithDelay=function</p>
<p>I would be very eager to hear about your experience with this little code snippet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luis</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137575</link>
		<dc:creator>Luis</dc:creator>
		<pubDate>Fri, 12 Sep 2008 15:35:48 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137575</guid>
		<description>&lt;p&gt;Same movie but no window mode set in the html:&lt;/p&gt;

&lt;p&gt;http://www.lessrain.com/projects/luis/as3/bugs/ff3mac/deploy/index2.html&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Same movie but no window mode set in the html:</p>
<p><a href="http://www.lessrain.com/projects/luis/as3/bugs/ff3mac/deploy/index2.html" rel="nofollow">http://www.lessrain.com/projects/luis/as3/bugs/ff3mac/deploy/index2.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luis</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137574</link>
		<dc:creator>Luis</dc:creator>
		<pubDate>Fri, 12 Sep 2008 15:35:02 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137574</guid>
		<description>&lt;p&gt;Yes I have try to remove the window mode, change the wmode value, etc getting the same result.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Yes I have try to remove the window mode, change the wmode value, etc getting the same result.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sitron</title>
		<link>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137573</link>
		<dc:creator>sitron</dc:creator>
		<pubDate>Fri, 12 Sep 2008 15:06:05 +0000</pubDate>
		<guid>http://www.blog.lessrain.com/possible-bug-in-firefox-301-mac/#comment-137573</guid>
		<description>&lt;p&gt;this is indeed very scary...
did you try to change the wmode to see if it has any incidence?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>this is indeed very scary&#8230;<br />
did you try to change the wmode to see if it has any incidence?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
