<?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>Sam Childs - Portfolio</title>
	<atom:link href="http://www.samchilds.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.samchilds.net</link>
	<description></description>
	<lastBuildDate>Thu, 03 May 2012 13:51:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>The Girl Effect</title>
		<link>http://www.samchilds.net/2012/02/29/the-girl-effect/</link>
		<comments>http://www.samchilds.net/2012/02/29/the-girl-effect/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 11:54:21 +0000</pubDate>
		<dc:creator>samwell</dc:creator>
				<category><![CDATA[Motion Graphics Inspiration]]></category>

		<guid isPermaLink="false">http://www.samchilds.net/?p=1806</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe width="630" height="473" src="http://www.youtube.com/embed/WIvmE4_KMNw?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p><iframe width="630" height="354" src="http://www.youtube.com/embed/1e8xgF0JtVg?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.samchilds.net/2012/02/29/the-girl-effect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To Do List</title>
		<link>http://www.samchilds.net/2012/02/29/to-do-list/</link>
		<comments>http://www.samchilds.net/2012/02/29/to-do-list/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 11:52:26 +0000</pubDate>
		<dc:creator>samwell</dc:creator>
				<category><![CDATA[Motion Graphics Inspiration]]></category>

		<guid isPermaLink="false">http://www.samchilds.net/?p=1804</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>    <iframe src="http://player.vimeo.com/video/37062018" width="630" height="354" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.samchilds.net/2012/02/29/to-do-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nice website using HTML5 video</title>
		<link>http://www.samchilds.net/2011/08/06/nice-website-using-html5-video/</link>
		<comments>http://www.samchilds.net/2011/08/06/nice-website-using-html5-video/#comments</comments>
		<pubDate>Sat, 06 Aug 2011 00:42:29 +0000</pubDate>
		<dc:creator>samwell</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.samchilds.net/?p=1287</guid>
		<description><![CDATA[Nice to see websites beginning to use HTML5 video. Calzedonia.com rendered and began playing almost instantly in my Firefox.]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-1288" title="html5-video" src="http://www.samchilds.net/samchilds/wp-content/uploads/2011/08/html5-video-300x177.jpg" alt="" width="300" height="177" />Nice to see websites beginning to use HTML5 video. <a title="Calzedonia.com" href="http://www.calzedonia.com" target="_blank">Calzedonia.com</a> rendered and began playing almost instantly in my Firefox.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.samchilds.net/2011/08/06/nice-website-using-html5-video/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Handy wait(); function for Flash designers</title>
		<link>http://www.samchilds.net/2011/03/30/handy-wait-function-for-flash-designers/</link>
		<comments>http://www.samchilds.net/2011/03/30/handy-wait-function-for-flash-designers/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 08:56:45 +0000</pubDate>
		<dc:creator>samwell</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[actionscripting]]></category>
		<category><![CDATA[AS2]]></category>
		<category><![CDATA[wait function]]></category>
		<category><![CDATA[wait()]]></category>

		<guid isPermaLink="false">http://www.samchilds.net/?p=1240</guid>
		<description><![CDATA[Anyone who designs Flash banners and the like will find this piece of AS2 extremely useful (if you&#8217;re not already using it). Add this piece of code to the beginning of the timeline that you want to use the wait() function on (I&#8217;ve included commenting for future reference): //add this [...]]]></description>
			<content:encoded><![CDATA[<p>Anyone who designs Flash banners and the like will find this piece of AS2 extremely useful (if you&#8217;re not already using it).</p>
<p>Add this piece of code to the beginning of the timeline that you want to use the wait() function on (I&#8217;ve included commenting for future reference):</p>
<p><code><br />
//add this code to the start of your movie<br />
function wait(time) {<br />
stop();<br />
var myInterval = setInterval(function () { play();<br />
clearInterval(myInterval); }, time*1000);<br />
}<br />
</code></p>
<p>Then you just need to add this small piece of AS to each frame which you would like to wait (the number in the brackets is how many seconds you need it to wait for):</p>
<p><code><br />
//add this to each frame you need to wait, number in brackets in seconds<br />
this.wait(2.5);<br />
</code></p>
<p>Hope this was useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.samchilds.net/2011/03/30/handy-wait-function-for-flash-designers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cows!</title>
		<link>http://www.samchilds.net/2011/03/23/cows/</link>
		<comments>http://www.samchilds.net/2011/03/23/cows/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 12:19:29 +0000</pubDate>
		<dc:creator>samwell</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[cows]]></category>

		<guid isPermaLink="false">http://www.samchilds.net/?p=1236</guid>
		<description><![CDATA[Strangely hypnotic video featuring cows&#8230;]]></description>
			<content:encoded><![CDATA[<p>Strangely hypnotic video featuring cows&#8230;</p>
<p><!--[Fast Tube]--><span id="FavUpD_IjVY" style="display:block;"><a title="Click here to watch this video!" href="http://www.samchilds.net/2011/03/23/cows/#FavUpD_IjVY"><img src="http://i.ytimg.com/vi/FavUpD_IjVY/0.jpg" alt="Fast Tube" border="0" width="320" height="240" /></a></span><!--[/Fast Tube]--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.samchilds.net/2011/03/23/cows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

