<?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>nerd. &#187; Mozilla Firefox</title>
	<atom:link href="http://nerd.steveferson.com/category/software/browsers/mozilla-firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://nerd.steveferson.com</link>
	<description>One nerd's struggle against the beast that is technology</description>
	<lastBuildDate>Mon, 02 Aug 2010 00:01:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Solved: IE event &#8211; &#8220;this.parentNode.parentNode is null or not an object&#8221;</title>
		<link>http://nerd.steveferson.com/2008/08/09/solved-ie-event-thisparentnodeparentnode-is-null-or-not-an-object/</link>
		<comments>http://nerd.steveferson.com/2008/08/09/solved-ie-event-thisparentnodeparentnode-is-null-or-not-an-object/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 13:25:06 +0000</pubDate>
		<dc:creator>nerd.</dc:creator>
				<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[addEventListener]]></category>
		<category><![CDATA[attachEvent]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://nerd.steveferson.com/?p=122</guid>
		<description><![CDATA[&#8230; it bloody-well is! This post was very nearly &#8220;Things that piss me off 5: Internet Explorer&#8221; (that one may yet come) but I thought a more descriptive title would help more people struggling with the same problem to find it. Anyway: background.  I am writing a new feature for a Content Management System to [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230; it bloody-well is! This post was very nearly &#8220;<a title="Niggles @ nerd." href="http://nerd.steveferson.com/category/inside-nerd/niggles-inside-nerd/">Things that piss me off</a> 5: Internet Explorer&#8221; (that one may yet come) but I thought a more descriptive title would help more people struggling with the same problem to find it.</p>
<p>Anyway: background.  I am writing a new feature for a Content Management System to allow users to upload files. With a simple bit of javascript I added a &#8220;+&#8221; button to allow them to add new rows to the form, allowing them to upload multiple files. It looks a bit like this:</p>
<div id="attachment_125" class="wp-caption aligncenter" style="width: 510px"><a href="http://nerd.steveferson.com/wp-content/uploads/2008/08/upload-images-screenshot1.png"><img class="size-full wp-image-125" title="How can IE balls up something so simple?" src="http://nerd.steveferson.com/wp-content/uploads/2008/08/upload-images-screenshot1.png" alt="Screenshot of Upload Images feature" width="500" height="166" /></a><p class="wp-caption-text">Screenshot of Upload Images feature</p></div>
<p>Anyway, it would obviously be nice to allow the user to remove a row if they&#8217;ve added one or two too many. The obvious solution seems to be to add a &#8220;-&#8221;  button beside each. Easy, right?</p>
<p>Unfortunately Internet Explorer, as per usual, ballses everything up. Because each &#8211; button is created dynamically I have to add an EventListener using JavaScript code. No problem so far. That event listener is a simple, one-line:</p>
<p><code>this.parentNode.parentNode.removeChild(this.parentNode);</code></p>
<p>As each row (the label, field itself (including button) and &#8220;-&#8221; link) is inside a div, the above code should remove that div and therefore remove the row. And it does&#8230; in Firefox. Try it in Internet Explorer and you get a message telling you &#8220;Error: &#8216;this.parentNode.parentNode&#8217; is null or not an object&#8221;.</p>
<h3><strong>Whhhaaa?!</strong></h3>
<p>Don&#8217;t you just hate when you can easily find something your code claims it can&#8217;t? Am I the only one who screams &#8220;It&#8217;s right f**king there!!&#8221; at my monitor? In this case, the problem seems to boil down to IE&#8217;s supid, proprietary, fucked up way of attaching Event listeners. When you use <span style="text-decoration: line-through;">Mozillas</span> the <a title="Document Object Model Events - Registration" href="http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-registration">W3C standard addEventListener</a> method to attach a listener to an event, &#8220;this&#8221; in the event handler refers to the object which the event is called on. Obvious, yes?  However when you use IE&#8217;s attachEvent instead, IE doesn&#8217;t seem to act in the same way. <a title="attachEvent - about.com" href="http://javascript.about.com/library/bldom20.htm">Apparently</a>, instead, IE sets &#8220;this&#8221; in an event handler to the window object instead of the calling/event object! Another good job from Micro$oft!</p>
<p>Apparently it&#8217;s <a title="Fixing IE's .attachEvent(..) failures - Incoherent Babble" href="http://blog.stchur.com/2006/10/12/fixing-ies-attachevent-failures/">can be overcome</a>, but that involves a <em>lot </em>of code and I refuse in principle to do that much inelegant hacking for something so simple. It&#8217;s much easier (and principled) to do this:</p>
<div id="attachment_128" class="wp-caption aligncenter" style="width: 418px"><a href="http://nerd.steveferson.com/wp-content/uploads/2008/08/ie-attachevent-error.jpg"><img class="size-full wp-image-128" title="Satisfying!" src="http://nerd.steveferson.com/wp-content/uploads/2008/08/ie-attachevent-error.jpg" alt="IE error message: &quot;Sorry, your browser doesn't support this function. This is probably because you're using Internet Explorer. www.getFirefox.com&quot;" width="408" height="182" /></a><p class="wp-caption-text">Not really a long-term solution, but bloody satisfying nonetheless.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://nerd.steveferson.com/2008/08/09/solved-ie-event-thisparentnodeparentnode-is-null-or-not-an-object/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Firefox 3 &#8211; Initial Impressions</title>
		<link>http://nerd.steveferson.com/2008/06/19/firefox-3-initial-impressions/</link>
		<comments>http://nerd.steveferson.com/2008/06/19/firefox-3-initial-impressions/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 11:37:08 +0000</pubDate>
		<dc:creator>nerd.</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[firefox 3]]></category>
		<category><![CDATA[mozilla]]></category>

		<guid isPermaLink="false">http://nerd.steveferson.com/?p=78</guid>
		<description><![CDATA[I haven&#8217;t come across anything truly groundbreaking in Firefox 3, possibly because I&#8217;ve become accustomed to much of the feature set through the Betas and RCs, but there are one or two improvements that are quite useful (as well as a couple of regressions unfortunately). Wee Niggles First the bad. When you view Page Info [...]]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t come across anything truly groundbreaking in <a title="Firefox 3 download page" href="http://www.mozilla-europe.org/en/firefox/">Firefox 3</a>, possibly because I&#8217;ve become accustomed to much of the feature set through the Betas and RCs, but there are one or two improvements that are quite useful (as well as a couple of regressions unfortunately).</p>
<p><strong>Wee Niggles</strong></p>
<p>First the bad. When you view Page Info from the context menu it doesn&#8217;t give a link to the CSS file in the Media tab any more. I was sure it was there in 2 and a quick google <a title="Firefox 3.0 Page Info no longer has CSS file link - Killersites" href="http://www.killersites.com/mvnforum/mvnforum/viewthread?thread=11073">confirmed this</a>. This really sucks &#8211; I can&#8217;t see why they&#8217;ve taken it out.</p>
<p>Secondly, when I was looking through the options to try and return the aforementioned CSS links, I discovered Firefox had decided it was going to automatically download any future updates when they were discovered (I promptly switched the option to &#8220;Ask me&#8230;&#8221;). Bad Firefox.</p>
<p><strong>Magic Address Bar</strong></p>
<p>The good is good though. It doesn&#8217;t seem like it at first, but to my mind the biggest improvement of all is the address bar. Sure they&#8217;ve added a &#8220;Most Visited&#8221; folder to your bookmarks toolbar which (shockingly, given the title) contains a list of the sites you visit most frequently, but the address bar has some great, if not immediately obvious, usability improvements.</p>
<p><span id="more-78"></span></p>
<div style="margin: 5px; width: 270px; float: right;"><img class="alignright size-full wp-image-82" title="Normal Favicon (No SSL)" src="http://nerd.steveferson.com/wp-content/uploads/2008/06/fx-address-bar-favicon-normal.png" alt="Non-secure site. Favicon shown on grey background." width="240" height="30" /><br />
<img class="alignright size-full wp-image-83" title="Favicon - SSL" src="http://nerd.steveferson.com/wp-content/uploads/2008/06/fx-address-bar-favicon-ssl.png" alt="Secure Site. Favicon background turns blue." width="238" height="30" /><br />
<img class="alignright size-full wp-image-84" title="Favicon: EV" src="http://nerd.steveferson.com/wp-content/uploads/2008/06/fx-address-bar-favicon-ev.png" alt="Secure Site with Extended Validation. Favicon background is green; name and country code of organisation is displayed." width="240" height="30" /></div>
<p>Firstly there&#8217;s support for <a title="Extended Validation Certificates - Wikipedia" href="http://en.wikipedia.org/wiki/Extended_Validation_Certificate">Extended Validation certificates</a>.  These are new forms of SSL certificates being issued (mostly to big companies due to their expense) and are used by IE7 too. A normal SSL certificate will turn the background of your favicon section (far left of the address bar) a bluey colour. An extended validation certificate turns it green and displays the name and country of the organisation. The aim is to tackle phishing, but that only works if people know what the colours are for &#8211; so consider the above publicity my good deed for the day.</p>
<p>The best feature by far though (IMHO) is that you can now search your history just by typing in the address bar. So if you&#8217;ve been looking at sites about the Maze stadium just type Maze and it brings up a drop-down list of all the sites you&#8217;ve visited with the word Maze in the domain or the title.</p>
<p><a href="http://nerd.steveferson.com/wp-content/uploads/2008/06/fx-address-search-maze.png"><img class="aligncenter size-full wp-image-81" title="Firefox address bar search: maze" src="http://nerd.steveferson.com/wp-content/uploads/2008/06/fx-address-search-maze.png" alt="Illustration of Firefox 3 address bar search. The word maze returns all the sites that have " width="500" height="235" /></a></p>
<p>Better still it works on multiple words. So to find wikipedia articles you&#8217;ve looked at recently containing the word maze, just type &#8220;maze wiki&#8221; (no quote marks) and voila!</p>
<p><a href="http://nerd.steveferson.com/wp-content/uploads/2008/06/fx-address-search-maze-wiki.png"><img class="aligncenter size-full wp-image-80" title="Firefox address bar search: maze wiki" src="http://nerd.steveferson.com/wp-content/uploads/2008/06/fx-address-search-maze-wiki.png" alt="Illustration of address bar search in Firefox 3. Typing the words " width="499" height="108" /></a></p>
<p>Overall it&#8217;s definitely worth upgrading. Aside from the address bar search there&#8217;s nothing that&#8217;s really, really impressed me (although I&#8217;ve been told the bookmarks management dialogue has been improved too) but it&#8217;s a step in the right direction and there&#8217;s nothing showstoppingly bad.</p>
<p>Oh yes, and they are <a title=" Firefox claims download success " href="http://news.bbc.co.uk/1/hi/technology/7462900.stm">claiming success</a> for Download Day&#8217;s record attempt with figures quoted as 8 million.</p>
]]></content:encoded>
			<wfw:commentRss>http://nerd.steveferson.com/2008/06/19/firefox-3-initial-impressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FireFox 3 Released Today</title>
		<link>http://nerd.steveferson.com/2008/06/17/firefox-3-released-today/</link>
		<comments>http://nerd.steveferson.com/2008/06/17/firefox-3-released-today/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 11:00:16 +0000</pubDate>
		<dc:creator>nerd.</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[download day]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[launch]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://nerd.steveferson.com/?p=77</guid>
		<description><![CDATA[Looks like the excitement is a little bit premature. Not just yet, but at 6pm BST the newest version of Mozilla&#8217;s FireFox web browser will be released. Mozilla want Firefox 3 to break the record for the most downloads in 24 hours, which begs the question as to why they pissed off Australasia and half [...]]]></description>
			<content:encoded><![CDATA[<p>Looks like <a title="Firefox aims for download record (BBC)" href="http://news.bbc.co.uk/1/hi/technology/7457503.stm">the excitement</a> is a little bit premature. Not just yet, but at 6pm BST the newest version of <a title="Mozilla Firefox in English" href="http://www.mozilla-europe.org/en/products/firefox/">Mozilla&#8217;s FireFox web browser</a> will be released. Mozilla want Firefox 3 to break the record for the most downloads in 24 hours, which begs the question as to why they <a title="Asa Dotzler: Firefox and more download day in your timezone" href="http://weblogs.mozillazine.org/asa/archives/2008/06/download_day_in.html">pissed off</a> Australasia and half of Asia by promoting Download Day as today, 17th June, when they&#8217;re not making the new version available until 10am Pacific Time which means the aforementioned regions will not see the download released until it is 18th June there. That&#8217;s without even considering yours truly and millions of other Europeans who will be finished their days work.</p>
<p>Good work Mozilla.</p>
]]></content:encoded>
			<wfw:commentRss>http://nerd.steveferson.com/2008/06/17/firefox-3-released-today/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What&#8217;re you lookin&#8217; at?</title>
		<link>http://nerd.steveferson.com/2008/04/29/whatre-you-lookin-at/</link>
		<comments>http://nerd.steveferson.com/2008/04/29/whatre-you-lookin-at/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 07:33:00 +0000</pubDate>
		<dc:creator>nerd.</dc:creator>
				<category><![CDATA[Inside nerd.]]></category>
		<category><![CDATA[Media Players / Media Streamers]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Phone Networks]]></category>
		<category><![CDATA[Web Servers]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Wireless Networking]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[monitor.exe]]></category>
		<category><![CDATA[netgear]]></category>
		<category><![CDATA[orange]]></category>
		<category><![CDATA[popular pages]]></category>
		<category><![CDATA[voicemail]]></category>
		<category><![CDATA[wg311 v3]]></category>

		<guid isPermaLink="false">http://nerd.steveferson.com/?p=73</guid>
		<description><![CDATA[Well I thought it was interesting so here&#8217;s the top 10 posts on nerd. by number of views (based on the last 500 page hits courtesy of Statcounter.com). Review: Why the Netgear WG311 v3 Sucks (72) Slightly dodgy network card that Netgear don&#8217;t seem that fussed about fixing. Bad on XP, it got worse on [...]]]></description>
			<content:encoded><![CDATA[<p>Well I thought it was interesting so here&#8217;s the top 10 posts on nerd. by number of views (based on the last 500 page hits courtesy of Statcounter.com).</p>
<ol>
<li><a title="Review: Why the Netgear WG311 v3 Sucks" href="http://nerd.steveferson.com/2006/10/31/review-why-the-netgear-wg311-v3-sucks/" target="_blank">Review: Why the Netgear WG311 v3 Sucks</a> (72)<a title="Review: Why the Netgear WG311 v3 Sucks" href="http://nerd.steveferson.com/2006/10/31/review-why-the-netgear-wg311-v3-sucks/" target="_blank"><br />
</a>Slightly dodgy network card that Netgear don&#8217;t seem that fussed about fixing.  Bad on XP, it got worse on Vista (see number 4). <a title="Review: Why the Netgear WG311 v3 Sucks" href="http://nerd.steveferson.com/2006/10/31/review-why-the-netgear-wg311-v3-sucks/" target="_blank"><br />
</a></li>
<li><a href="http://nerd.steveferson.com/2006/09/26/playing-ipod-video-on-your-tv" target="_blank">Playing iPod Video on Your TV</a> (45)<br />
Seems to be a lot of people looking for instructions for the iPod Classic. Here&#8217;s a tip: sell it.</li>
<li><a href="http://nerd.steveferson.com/2007/05/01/server-application-unavailable-installing-iis-on-net-20" target="_blank">Server application unavailable: installing IIS on .NET 2.0</a> (44)<br />
Seems to be a common problem. Sadly Microsoft&#8217;s error message is about as relevant as ever.<a href="http://nerd.steveferson.com/2007/05/01/server-application-unavailable-installing-iis-on-net-20" target="_blank"><br />
</a></li>
<li><a title="Installing Vista (AKA More Netgear WG311 Misery)" href="http://nerd.steveferson.com/2007/04/08/installing-vista-aka-more-netgear-wg311-misery" target="_blank">Installing Vista (AKA More Netgear WG311 Misery)</a> (31)<br />
Even more messed up. Thank goodness for Linksys!<a title="Installing Vista (AKA More Netgear WG311 Misery)" href="http://nerd.steveferson.com/2007/04/08/installing-vista-aka-more-netgear-wg311-misery" target="_blank"><br />
</a></li>
<li><a title="# Thunderbird/Outlook/Google Calendar Integration " href="http://nerd.steveferson.com/2008/03/21/thunderbirdoutlookgoogle-calendar-integration" target="_blank">Thunderbird/Outlook/Google Calendar Integration</a> (25)<a title="# Thunderbird/Outlook/Google Calendar Integration " href="http://nerd.steveferson.com/2008/03/21/thunderbirdoutlookgoogle-calendar-integration" target="_blank"><br />
</a>How to integrate your Thunderbird calendar at home with your Outlook in work, via Google Calendar.<a title="# Thunderbird/Outlook/Google Calendar Integration " href="http://nerd.steveferson.com/2008/03/21/thunderbirdoutlookgoogle-calendar-integration" target="_blank"><br />
</a></li>
<li><a title="Orange Answerphone (Voicemail) Number for PAYG" href="http://nerd.steveferson.com/2008/03/15/orange-answerphone-voicemail-number-for-payg/">Orange Answerphone (Voicemail) Number for PAYG</a> (23)<br />
Such a simple problem. Who knew it would be so hard to find?<a title="Orange Answerphone (Voicemail) Number for PAYG" href="http://nerd.steveferson.com/2008/03/15/orange-answerphone-voicemail-number-for-payg/"><br />
</a></li>
<li><a title="Stop Monitor.exe Hogging CPU" href="http://nerd.steveferson.com/2007/06/28/stop-monitorexe-hogging-cpu" target="_blank">Stop Monitor.exe Hogging CPU</a> (20)<br />
Why can&#8217;t people just give you a standard installation instead of trying to do everything for you? Help sounds good, until their useful tools start killing your PC.<a title="Stop Monitor.exe Hogging CPU" href="http://nerd.steveferson.com/2007/06/28/stop-monitorexe-hogging-cpu" target="_blank"><br />
</a></li>
<li><a title="How to run IIS Web Server in Windows XP Home" href="http://nerd.steveferson.com/2007/03/17/how-to-run-iis-web-server-in-windows-xp-home" target="_blank">How to run IIS Web Server in Windows XP Home</a> (20)<br />
Microsoft&#8217;s official line is it can&#8217;t be done, but it&#8217;s not that tricky.<a title="How to run IIS Web Server in Windows XP Home" href="http://nerd.steveferson.com/2007/03/17/how-to-run-iis-web-server-in-windows-xp-home" target="_blank"><br />
</a></li>
<li><a title="Making Firefox Scroll With Syanptics TouchPad" href="http://nerd.steveferson.com/2007/04/27/making-firefox-scroll-with-syanptics-touchpad" target="_blank">Making Firefox Scroll With Syanptics TouchPad</a> (19)<a title="Making Firefox Scroll With Syanptics TouchPad" href="http://nerd.steveferson.com/2007/04/27/making-firefox-scroll-with-syanptics-touchpad" target="_blank"><br />
</a>Discovering the solution to making Firefox scroll on my Acer Aspire laptop.<a title="Making Firefox Scroll With Syanptics TouchPad" href="http://nerd.steveferson.com/2007/04/27/making-firefox-scroll-with-syanptics-touchpad" target="_blank"><br />
</a></li>
<li><a title="NAS or Home Server" href="http://nerd.steveferson.com/2008/03/08/nas-or-home-server" target="_blank">NAS or Home Server</a> (17)<a title="NAS or Home Server" href="http://nerd.steveferson.com/2008/03/08/nas-or-home-server" target="_blank"><br />
</a>I deliberate over whether I can justify spending the extra to build or buy a home server before eventually deciding that a Linkstation Live will meet my needs for less than half the price.<a title="NAS or Home Server" href="http://nerd.steveferson.com/2008/03/08/nas-or-home-server" target="_blank"><br />
</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://nerd.steveferson.com/2008/04/29/whatre-you-lookin-at/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nerd. links &#8211; Fix Firefox/Flash CPU Thrashing</title>
		<link>http://nerd.steveferson.com/2007/10/12/nerd-links-fix-firefoxflash-cpu-thrashing/</link>
		<comments>http://nerd.steveferson.com/2007/10/12/nerd-links-fix-firefoxflash-cpu-thrashing/#comments</comments>
		<pubDate>Fri, 12 Oct 2007 09:40:20 +0000</pubDate>
		<dc:creator>nerd.</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>

		<guid isPermaLink="false">http://nerd.steveferson.com/2007/10/12/nerd-links-fix-firefoxflash-cpu-thrashing/</guid>
		<description><![CDATA[I love FireFox, both as a web browser and as a web designer. I love it because it works, I love it for adhering (much better than IE ever will anyway) to web standards and I love it for the handy plugins that you can get. I hate it though, for thrashing my CPU to [...]]]></description>
			<content:encoded><![CDATA[<p>I love <a href="http://www.mozilla-europe.org/en/" title="Home page | Mozilla Europe">FireFox</a>, both as a web browser and as a web designer. I love it because it works, I love it for adhering (much better than IE ever will anyway) to <a href="http://www.w3.org/MarkUp/#recommendations" title="W3C XHTML2">web</a> <a href="http://www.w3.org/Style/CSS/" title="Cascading Style Sheets">standards</a> and I love it for the handy <a href="https://addons.mozilla.org/en-US/firefox/" title="Firefox Add-ons">plugins</a> that you can get.</p>
<p>I hate it though, for thrashing my CPU to 99% whenever I load some pages with  flash animations in them.  <a href="http://www.unitedwebhosting.com/" title="United Web Hosting">UnitedWebHosting</a> which, as of this date, hosts this site (though probably not for long) is one that&#8217;ll do it.  Today, I went to <a href="http://www.zdnet.co.uk" title="Technology News, Product Reviews and Price Checks at ZDNet UK">ZDnet UK</a> only for a couple of Intel ads to do the same.</p>
<p>It seems like a bit of a joke that a company the size of <a href="http://www.adobe.com/" title="Adobe">Adobe</a> (the makers of <a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&amp;promoid=BIOW" title="Adobe Flash Player Download Centre">Flash</a>: they write the plugin, not Mozilla) haven&#8217;t managed to resolve this, fairly major, bug. I&#8217;m sure they know about it, I mean <a href="http://robertlindsay.blogspot.com/2006/07/fix-for-nasty-firefox-cpu-bug.html" title="Fix For a Nasty Firefox CPU Bug">different people</a> seem to have been talking about since at least <a href="http://www.interaktonline.com/blogs/alexandru/index.php?view=article&amp;id_art=124" title="Why is Flash running in the background (and why Ajax don't do it)?">January last year</a>.</p>
<p><img src="http://nerd.steveferson.com/wp-content/uploads/2007/10/flash.png" title="FlashBlock inserts placeholders for Flash animations" alt="FlashBlock inserts placeholders for Flash animations" style="margin: 2px; float: left" />Obviously while FireFox is hogging 99% of your CPU there&#8217;s only 1% to share among the rest of the programs you have running, so Outlook and  the rest didn&#8217;t have much of a hope of doing anything at all until I killed the FireFox process in task manager.  As this wasn&#8217;t the first time this had happened, I decided to go hunting for a solution &#8211; which brings me to <a href="http://flashblock.mozdev.org/" title="mozdev.org - flashblock">FlashBlock</a> (hat-tip to <a href="http://saltypig.com/blog/2006/07/lingering-100-cpu-flash-joke-of.htm" title=" the lingering 100% CPU flash joke of firefox">The Idiot</a>).</p>
<p><a href="http://flashblock.mozdev.org/" title="mozdev.org - flashblock">FlashBlock</a> uses JavaScript to replace flash animations in web pages with placeholders (an empty square with a flash logo in the middle).  Don&#8217;t worry though, clicking this will run the flash animation if you really want to see something (e.g. if you visit YouTube or another site where the primary content is encoded in Flash files).  In fact you can even specify a &#8216;white-list&#8217; of sites in which flash content will run automatically.</p>
]]></content:encoded>
			<wfw:commentRss>http://nerd.steveferson.com/2007/10/12/nerd-links-fix-firefoxflash-cpu-thrashing/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Making Firefox Scroll With Synaptics TouchPad</title>
		<link>http://nerd.steveferson.com/2007/04/27/making-firefox-scroll-with-syanptics-touchpad/</link>
		<comments>http://nerd.steveferson.com/2007/04/27/making-firefox-scroll-with-syanptics-touchpad/#comments</comments>
		<pubDate>Fri, 27 Apr 2007 14:48:06 +0000</pubDate>
		<dc:creator>nerd.</dc:creator>
				<category><![CDATA[Input Devices]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>

		<guid isPermaLink="false">http://nerd.steveferson.com/2007/04/27/making-firefox-scroll-with-syanptics-touchpad/</guid>
		<description><![CDATA[Even though, as a web designer, I hate Internet Explorer I&#8217;ve been using it regularly on my laptop more or less since I got it. The reason for this sad state of affairs was that Firefox wouldn&#8217;t recognise the scroll buttons on the Synaptics TouchPad and so I&#8217;d have to scroll using the cursor keys [...]]]></description>
			<content:encoded><![CDATA[<p>Even though, as a web designer, I hate Internet Explorer I&#8217;ve been using it regularly on my laptop more or less since I got it. The reason for this sad state of affairs was that <a title="Firefox - A faster, safer browser" href="http://pagead2.googlesyndication.com/pagead/iclk?sa=l&amp;num=0&amp;client=ca-ref-pub-5035384023750057&amp;adurl=http://tools.google.com/firefox/toolbar/bundle/intl/en-GB/%3Fai%3DBQ3yQowkyRuyjAY3I0wTAsbCEBNGe8he1r_PPAcWNtwEAEAEg-JqBBTgBUJv2p-j7_____wFgu7axg9AKoAG1lcj9A7IBGHd3dy5ldmVyeXRoaW5ndWxzdGVyLmNvbcgBAtoBQGh0dHA6Ly93d3cuZXZlcnl0aGluZ3Vsc3Rlci5jb20vYmxvZ3MvaW5kZXgucGhwL2V2ZXJ5dGhpbmd1bHN0ZXKAAgGoAwM&amp;ai=BZhaHowkyRuyjAY3I0wTAsbCEBNGe8he1r_PPAcWNtwEAEAEg-JqBBTgBULDlsdL5_____wFgu7axg9AKoAG1lcj9A7IBGHd3dy5ldmVyeXRoaW5ndWxzdGVyLmNvbcgBAtoBQGh0dHA6Ly93d3cuZXZlcnl0aGluZ3Vsc3Rlci5jb20vYmxvZ3MvaW5kZXgucGhwL2V2ZXJ5dGhpbmd1bHN0ZXKAAgGoAwM">Firefox</a> wouldn&#8217;t recognise the scroll buttons on the Synaptics TouchPad and so I&#8217;d have to scroll using the cursor keys or the scroll bar on the right. This situation finally became untenable this morning though &#8211; I had two instances of Microsoft&#8217;s <a title="Visual Studio Express: Visual Web Developer" href="http://msdn.microsoft.com/vstudio/express/vwd/">Visual Web Developer</a> open and the machine seemed frustratingly slow to respond. A quick duke at Task Manager confirmed that this was because lots of memory was being used.</p>
<p>The Visual Web Developer program uses a lot of memory but I was surprised to find that Internet Explorer was actually using more at about 60MB. Firefox, also running at the time, was only using about 20MB so I decided it was time to fix the scrolling problem. I googled a bit and came across reports of people testifying that they solved the problem by downloading the newest <a title="Synaptics :: Drivers" href="http://www.synaptics.com/support/drive.cfm">drivers from Synaptics&#8217; web site</a>. This didn&#8217;t work for me though. Then I came across <a title="Trackpoint scroll doesn't work" href="http://forums.mozillazine.org/viewtopic.php?t=74129">this forum post at Mozillazine</a> which talked about changing a setting for the scroll buttons from &#8220;scroll selected item&#8221; to &#8220;scroll item beneath pointer&#8221;. Unfortunately this didn&#8217;t work for me either.</p>
<p><div style="float: right; width: 300px;" margin-left: 10px;><script type="text/javascript"><!--
google_ad_client = "pub-5035384023750057";
/* nerd. In-Content (square) */
google_ad_slot = "8805176602";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div></p>
<p>Here&#8217;s what did (after installing those <a title="Synaptics :: Drivers" href="http://www.synaptics.com/support/drive.cfm">new drivers</a>):</p>
<ol>
<li>Double-click the touchpad icon in the system tray</li>
<li>Ensure the correct device is selected in the Device Settings tab and click the Settings button</li>
<li>Open the Buttons list and click &#8216;Scroll Up Button Action&#8217;</li>
<li>Choose &#8220;Scroll the current window up&#8221; from the list.</li>
<li>Click the &#8216;Scroll Down Button Action&#8217; and choose &#8216;Scroll the current window down&#8217; from the list.</li>
<li>Apply/OK out.</li>
</ol>
<p>Voila! Firefox now scrolls. I later discovered that someone else had replied to the above Mozillazine forum post advising just that, but I assure you I discovered it myself quite by accident.</p>
<p>Anyway, during the course of this fiddling I also discovered that you can use the right hand edge of your touch pad for scrolling. Just move your finger up or down the far right edge of your touch pad and the window scrolls. Unlike the scroll buttons, this did work in Firefox regardless of the above setting (though according to <a title="Touchpad virtual scrolling" href="http://kb.mozillazine.org/Touchpad_virtual_scrolling">this KnowledgeBase entry</a>, it may require the newest <a title="Synaptics :: Drivers" href="http://www.synaptics.com/support/drive.cfm">drivers</a>), so if you&#8217;re having problems with Firefox scrolling with a Synaptics touchpad device, you should now have two solutions. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://nerd.steveferson.com/2007/04/27/making-firefox-scroll-with-syanptics-touchpad/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>
