<?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>squirrel_factory</title>
	<atom:link href="http://www.flamingsquirrel.co.uk/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flamingsquirrel.co.uk/blog</link>
	<description>Creative development</description>
	<lastBuildDate>Wed, 15 Apr 2009 09:06:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Flex 3 default background colour</title>
		<link>http://www.flamingsquirrel.co.uk/blog/flex-3-default-background-colour/</link>
		<comments>http://www.flamingsquirrel.co.uk/blog/flex-3-default-background-colour/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 09:06:42 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.flamingsquirrel.co.uk/blog/?p=107</guid>
		<description><![CDATA[If you would like to change the default &#8216;blue&#8217; of your Flex movie as it preloads:
Select Project &#62; Properties &#62; Flex Compiler and under the Additional compiler arguments add &#8216;-default-background-color #yourcolour&#8217;. So if you want a plain white background it would look like:
-locale en_US -default-background-color #FFFFFF
]]></description>
			<content:encoded><![CDATA[<p>If you would like to change the default &#8216;blue&#8217; of your Flex movie as it preloads:</p>
<p>Select Project &gt; Properties &gt; Flex Compiler and under the Additional compiler arguments add &#8216;-default-background-color #yourcolour&#8217;. So if you want a plain white background it would look like:</p>
<p>-locale en_US -default-background-color #FFFFFF</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flamingsquirrel.co.uk/blog/flex-3-default-background-colour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project collaberation notes</title>
		<link>http://www.flamingsquirrel.co.uk/blog/project-collaberation-notes/</link>
		<comments>http://www.flamingsquirrel.co.uk/blog/project-collaberation-notes/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 11:04:24 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://www.flamingsquirrel.co.uk/blog/?p=103</guid>
		<description><![CDATA[
I have just set-up and started using Protonotes - a free javascript web based service that allows you to add notes to your prototype that allows project team members to discuss system functionality, design, and requirements directly on the prototype.
It takes about 4 mins to set-up and get started. Project team members don&#8217;t have to install anything or sign [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flamingsquirrel.co.uk/blog/wp-content/uploads/2009/02/protonotes-note.png"><img class="size-full wp-image-101 imgRight" title="protonotes-note" src="http://www.flamingsquirrel.co.uk/blog/wp-content/uploads/2009/02/protonotes-note.png" alt="Protonotes example" width="202" height="183" /></a></p>
<p>I have just set-up and started using <a href="http://www.protonotes.com/">Protonotes</a> - a free javascript web based service that allows you to add notes to your prototype that allows project team members to discuss system functionality, design, and requirements directly on the prototype.</p>
<p>It takes about 4 mins to set-up and get started. Project team members don&#8217;t have to install anything or sign up for anything to use it. It just works. Simple&#8230;.easy&#8230; just what I like.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flamingsquirrel.co.uk/blog/project-collaberation-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionscript 3 Simple click EventListener</title>
		<link>http://www.flamingsquirrel.co.uk/blog/actionscript-3-simple-click-eventlistener/</link>
		<comments>http://www.flamingsquirrel.co.uk/blog/actionscript-3-simple-click-eventlistener/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 16:01:02 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.flamingsquirrel.co.uk/blog/?p=96</guid>
		<description><![CDATA[If like me you are making the transition from Actionscript 2 to 3 you may well find that creating simple onPress functions don&#8217;t use the same syntax. I checked the Adobe help files but got confused by the overly complex details.
If you want a simple clickable moveClip use the following code. The first line means [...]]]></description>
			<content:encoded><![CDATA[<p>If like me you are making the transition from Actionscript 2 to 3 you may well find that creating simple onPress functions don&#8217;t use the same syntax. I checked the Adobe help files but got confused by the overly complex details.</p>
<p>If you want a simple clickable moveClip use the following code. The first line means that the movie clip will act like a button and the cursor will change when the mouse is hovering over.</p>
<p>movieclip_name.buttonMode = true;<br />
movieclip_name.addEventListener(MouseEvent.CLICK, onClick);</p>
<p>function onClick(event:MouseEvent):void{<br />
trace(&#8221;Yes, this works!&#8221;)<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flamingsquirrel.co.uk/blog/actionscript-3-simple-click-eventlistener/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flex bandwidth profiler</title>
		<link>http://www.flamingsquirrel.co.uk/blog/flex-bandwidth-profiler/</link>
		<comments>http://www.flamingsquirrel.co.uk/blog/flex-bandwidth-profiler/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 09:31:19 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.flamingsquirrel.co.uk/blog/?p=90</guid>
		<description><![CDATA[I have just started learning Flex and realised there is no way to test the download speed of your movie and whether your preloader is working as it should &#8211; like you can with the bandwidth profiler in Flash.
After a quick search I decided that Charles met my requirements. I have had a quick play [...]]]></description>
			<content:encoded><![CDATA[<p>I have just started learning Flex and realised there is no way to test the download speed of your movie and whether your preloader is working as it should &#8211; like you can with the bandwidth profiler in Flash.</p>
<p>After a quick search I decided that <a href="http://www.charlesproxy.com/">Charles</a> met my requirements. I have had a quick play with it and the interface is well designed, it has a Firefox extension and most importantly I can test my Flex preloaders are working! It also works on OSX which means I can use it on my home machine as well. Its seems to be a great bit of software and well worth testing.</p>
<p>Update &#8211; I couldn&#8217;t figure out how to get it to throttle my bin-bug folder which resides on my local drive. To get around this I created a new workspace on my local server (http://localhost/flex/&#8230;.) which solved the problem. This probably isn&#8217;t the correct way to set-up your Flex development environment&#8230;.. any advice appreciated.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flamingsquirrel.co.uk/blog/flex-bandwidth-profiler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screengrab a complete web page</title>
		<link>http://www.flamingsquirrel.co.uk/blog/screengrab-a-complete-web-page/</link>
		<comments>http://www.flamingsquirrel.co.uk/blog/screengrab-a-complete-web-page/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 09:18:09 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[tools]]></category>
		<category><![CDATA[extensions]]></category>

		<guid isPermaLink="false">http://www.flamingsquirrel.co.uk/blog/?p=64</guid>
		<description><![CDATA[Ever needed to screen grab a web page and realised its three times the height of the screen? I certainly have and admit to wasting time pasting screen grabs together &#8211; Screengrab to the rescue!
Screengrab! 0.95 is a superb Firefox extension developed by Andy Mutton that makes it easy to save a web-page as an [...]]]></description>
			<content:encoded><![CDATA[<p>Ever needed to screen grab a web page and realised its three times the height of the screen? I certainly have and admit to wasting time pasting screen grabs together &#8211; Screengrab to the rescue!</p>
<p><a title="Screengrab 0.95" href="http://www.screengrab.org/" target="_self">Screengrab! 0.95</a> is a superb Firefox extension developed by Andy Mutton that makes it easy to save a web-page as an image. You can save anything that you can see in a browser window &#8211; from a small selection, to a complete page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flamingsquirrel.co.uk/blog/screengrab-a-complete-web-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slide:ology Book Review</title>
		<link>http://www.flamingsquirrel.co.uk/blog/slideology-book-review/</link>
		<comments>http://www.flamingsquirrel.co.uk/blog/slideology-book-review/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 08:13:05 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[reviews]]></category>

		<guid isPermaLink="false">http://www.flamingsquirrel.co.uk/blog/?p=44</guid>
		<description><![CDATA[I have just had the pleasure of reading slide:ology, The Art and Science of Creating Great Presentations by Nancy Duarte, President and CEO of Duarte Design, the firm that created the presentation for Al Gore&#8217;s Oscar-winning film, An Inconvenient Truth.
The book is beautifully designed and illustrated and leads the reader through the process and concepts [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-medium wp-image-49 imgRightBorder alignnone" title="slideology" src="http://www.flamingsquirrel.co.uk/blog/wp-content/uploads/2008/10/slideology-299x300.gif" alt="slideology" width="209" height="210" />I have just had the pleasure of reading slide:ology, The Art and Science of Creating Great Presentations by Nancy Duarte, President and CEO of <a href="http://www.duarte.com/">Duarte Design</a>, the firm that created the presentation for Al Gore&#8217;s Oscar-winning film, An Inconvenient Truth.</p>
<p>The book is beautifully designed and illustrated and leads the reader through the process and concepts of creating a visually compelling presentation. Easy to read sections with insightful case studies from some of the world&#8217;s leading brands (Adobe, Hewlett-Packard, Mozilla) help convey the message that you need to create a meaningful relationship between you, your slides and your audience rather than a barrage of slides full of nested bullet lists.</p>
<p>Key areas of the book include:</p>
<ul>
<li>Why is a good presentation important and where do you begin</li>
<li>Planning, research and brainstorming</li>
<li>Displaying data &#8211; diagrams and infographics</li>
<li>Thinking like a designer &#8211; color, grid systems, typeography, layout, templates</li>
<li>Movement and animation</li>
<li>Interacting with slides</li>
<li>Manifesto &#8211; The five theses of the Power of a Presentation</li>
</ul>
<p>The book isn&#8217;t about Powerpoint, Keynote or Google Docs, its about concept, storytelling and engaging your audience. It should be read and re-read by anyone responsible for brainstorming, creating, designing and presenting in any organisation who truely cares about their brand.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flamingsquirrel.co.uk/blog/slideology-book-review/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>IE6 and 7 whitespace bug</title>
		<link>http://www.flamingsquirrel.co.uk/blog/ie6-and-7-whitespace-bug/</link>
		<comments>http://www.flamingsquirrel.co.uk/blog/ie6-and-7-whitespace-bug/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 09:02:52 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.flamingsquirrel.co.uk/blog/?p=42</guid>
		<description><![CDATA[IE 6 and IE7 often display whitespace underneath images and &#60;li&#62; tags (when all other browsers do not) . The best way to solve this is to add either or both of the css rules:
display:inline-block;
display:block;
The alternative method is to remove all space between tags within your html document, however this makes the mark-up hard to read [...]]]></description>
			<content:encoded><![CDATA[<p>IE 6 and IE7 often display whitespace underneath images and &lt;li&gt; tags (when all other browsers do not) . The best way to solve this is to add either or both of the css rules:</p>
<p><code>display:inline-block;<br/><br />
display:block;</code></p>
<p>The alternative method is to remove all space between tags within your html document, however this makes the mark-up hard to read and edit!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flamingsquirrel.co.uk/blog/ie6-and-7-whitespace-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing scrollbars from IE7 textarea</title>
		<link>http://www.flamingsquirrel.co.uk/blog/removing-scrollbars-from-ie7-textarea/</link>
		<comments>http://www.flamingsquirrel.co.uk/blog/removing-scrollbars-from-ie7-textarea/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 09:32:16 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[XHTML CSS]]></category>

		<guid isPermaLink="false">http://www.flamingsquirrel.co.uk/blog/?p=41</guid>
		<description><![CDATA[Often the default textarea in Internet Explorer 7 has &#8216;greyed-out&#8217; scrollbars even when no content has been entered. To remove simply add the following style declaration to the style-sheet.
overflow:auto;
]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-72 imgRight" title="textarea" src="http://www.flamingsquirrel.co.uk/blog/wp-content/uploads/2008/11/textarea.gif" alt="ie7 textarea" width="220" height="108" />Often the default textarea in Internet Explorer 7 has &#8216;greyed-out&#8217; scrollbars even when no content has been entered. To remove simply add the following style declaration to the style-sheet.</p>
<pre>overflow:auto;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.flamingsquirrel.co.uk/blog/removing-scrollbars-from-ie7-textarea/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Positioning a background image at the foot of the page</title>
		<link>http://www.flamingsquirrel.co.uk/blog/40/</link>
		<comments>http://www.flamingsquirrel.co.uk/blog/40/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 14:48:40 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.flamingsquirrel.co.uk/blog/?p=40</guid>
		<description><![CDATA[If you need to position a background image at the foot of a page you will realise its pretty tricky to align it right at the bottom.
Add the following to your stylesheet and hey presto!
html {
min-height: 100%;
height: auto;
}
]]></description>
			<content:encoded><![CDATA[<p>If you need to position a background image at the foot of a page you will realise its pretty tricky to align it right at the bottom.</p>
<p>Add the following to your stylesheet and hey presto!</p>
<p><code>html {<br />
min-height: 100%;<br />
height: auto;<br />
}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flamingsquirrel.co.uk/blog/40/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Missing image problem</title>
		<link>http://www.flamingsquirrel.co.uk/blog/missing-image-problem/</link>
		<comments>http://www.flamingsquirrel.co.uk/blog/missing-image-problem/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 13:42:31 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.flamingsquirrel.co.uk/blog/?p=39</guid>
		<description><![CDATA[I have often come across the problem of a missing image when developing a site.
The solution is simple.
&#60;img src=&#8221;image.gif&#8221; width=&#8221;100&#8243; height=&#8221;100&#8243; onerror=&#8221;this.src=&#8217;error.gif&#8217;;&#8221;&#62;
If the correct image doesn&#8217;t exist the image named error.gif will be used instead.
Credit goes to Rob Gonda for this tip.
]]></description>
			<content:encoded><![CDATA[<p>I have often come across the problem of a missing image when developing a site.</p>
<p>The solution is simple.</p>
<p>&lt;img src=&#8221;image.gif&#8221; width=&#8221;100&#8243; height=&#8221;100&#8243; onerror=&#8221;this.src=&#8217;error.gif&#8217;;&#8221;&gt;</p>
<p>If the correct image doesn&#8217;t exist the image named error.gif will be used instead.</p>
<p><a href="http://www.robgonda.com/blog/index.cfm/2008/4/21/HTML-OnMissingImage">Credit goes to Rob Gonda</a> for this tip.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flamingsquirrel.co.uk/blog/missing-image-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
