<?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>adamcousins.com</title>
	<atom:link href="http://www.adamcousins.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.adamcousins.com</link>
	<description>Online presence for digital developer Adam Cousins</description>
	<lastBuildDate>Fri, 03 Feb 2012 16:25:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>New Flick The Frog Trailer</title>
		<link>http://www.adamcousins.com/?p=64</link>
		<comments>http://www.adamcousins.com/?p=64#comments</comments>
		<pubDate>Fri, 03 Feb 2012 16:25:30 +0000</pubDate>
		<dc:creator>adamjamescuz</dc:creator>
				<category><![CDATA[iPhone Apps]]></category>

		<guid isPermaLink="false">http://www.adamcousins.com/?p=64</guid>
		<description><![CDATA[Here&#8217;s a more action packed trailer of my iPhone game &#8216;Flick The Frog&#8216;, with my new dubstep track in the background:]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a more action packed trailer of my iPhone game &#8216;<a href="http://itunes.apple.com/gb/app/flick-the-frog/id479851618?mt=8" title="Flick The Frog" target="_blank">Flick The Frog</a>&#8216;, with <a href="http://soundcloud.com/badadam/sausage-fattened-dubstep" title="Sausage Fattenned Dub" target="_blank">my new dubstep track</a> in the background:<br />
<iframe width="560" height="315" src="http://www.youtube.com/embed/CJ0cDy85_FI" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adamcousins.com/?feed=rss2&#038;p=64</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stage 3D Trail Effect</title>
		<link>http://www.adamcousins.com/?p=49</link>
		<comments>http://www.adamcousins.com/?p=49#comments</comments>
		<pubDate>Fri, 27 Jan 2012 17:56:42 +0000</pubDate>
		<dc:creator>adamjamescuz</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[adam]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[cousins]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[molehill]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[stage3d]]></category>
		<category><![CDATA[tail]]></category>
		<category><![CDATA[trail]]></category>

		<guid isPermaLink="false">http://www.adamcousins.com/?p=49</guid>
		<description><![CDATA[So in my last post, I demoed a quick stage3D test featuring a mouse-type object composed of primitive shapes with a trail effect for a funky glowing neon mouse tail: &#160; Trail Effect Some people were wondering how I achieved the tail effect, so I&#8217;ve made it into a re-usable class which you can add [...]]]></description>
			<content:encoded><![CDATA[<p>So in my <a title="3D mouse" href="http://www.adamcousins.com/?p=43" target="_blank">last post</a>, I demoed a quick stage3D test featuring a mouse-type object composed of primitive shapes with a trail effect for a funky glowing neon mouse tail:</p>
<p><a href="http://www.adamcousins.com/flashposts/trail/index.html" target="_blank"><img class=" alignnone" title="Trial" src="http://www.adamcousins.com/blogimages/trail.jpg" alt="" width="581" height="338" /></a></p>
<p>&nbsp;</p>
<p><strong>Trail Effect</strong></p>
<p>Some people were wondering how I achieved the tail effect, so I&#8217;ve made it into a <a title="trail src" href="http://www.adamcousins.com/source/trail-src.zip" target="_blank">re-usable class</a> which you can add to your own project. The main functionality is pretty simple &#8211; basically just an array of Planes where each plane follows the one in front of it in the array during an enter frame event, with a bit of drag applied in between:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> updatePosition<span style="color: #000000;">&#40;</span>_x<span style="color: #000066; font-weight: bold;">:</span><span style="color: #004993;">Number</span><span style="color: #000066; font-weight: bold;">,</span> _y<span style="color: #000066; font-weight: bold;">:</span><span style="color: #004993;">Number</span><span style="color: #000066; font-weight: bold;">,</span> _z<span style="color: #000066; font-weight: bold;">:</span><span style="color: #004993;">Number</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span> <span style="color: #000000;">&#123;</span>		
&nbsp;
    <span style="color: #6699cc; font-weight: bold;">var</span> trail0<span style="color: #000066; font-weight: bold;">:</span>Plane = _trailArray<span style="color: #000000;">&#91;</span><span style="color: #000000; font-weight:bold;">0</span><span style="color: #000000;">&#93;</span><span style="color: #000066; font-weight: bold;">;</span>
    trail0<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">x</span>  <span style="color: #000066; font-weight: bold;">+</span>= <span style="color: #000000;">&#40;</span>_x <span style="color: #000066; font-weight: bold;">-</span> trail0<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">x</span><span style="color: #000000;">&#41;</span> <span style="color: #000066; font-weight: bold;">/</span> _length<span style="color: #000066; font-weight: bold;">;</span>
    trail0<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">y</span>  <span style="color: #000066; font-weight: bold;">+</span>= <span style="color: #000000;">&#40;</span>_y <span style="color: #000066; font-weight: bold;">-</span> trail0<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">y</span><span style="color: #000000;">&#41;</span> <span style="color: #000066; font-weight: bold;">/</span> _length<span style="color: #000066; font-weight: bold;">;</span>
    trail0<span style="color: #000066; font-weight: bold;">.</span>z  <span style="color: #000066; font-weight: bold;">+</span>= <span style="color: #000000;">&#40;</span>_z <span style="color: #000066; font-weight: bold;">-</span> trail0<span style="color: #000066; font-weight: bold;">.</span>z<span style="color: #000000;">&#41;</span> <span style="color: #000066; font-weight: bold;">/</span> _length<span style="color: #000066; font-weight: bold;">;</span>
&nbsp;
    <span style="color: #0033ff; font-weight: bold;">for</span> <span style="color: #000000;">&#40;</span><span style="color: #6699cc; font-weight: bold;">var</span> i<span style="color: #000066; font-weight: bold;">:</span><span style="color: #004993;">Number</span> = <span style="color: #000000; font-weight:bold;">1</span><span style="color: #000066; font-weight: bold;">;</span> i <span style="color: #000066; font-weight: bold;">&amp;</span>lt<span style="color: #000066; font-weight: bold;">;</span> _trailArray<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">length</span><span style="color: #000066; font-weight: bold;">;</span> i<span style="color: #000066; font-weight: bold;">++</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
        <span style="color: #6699cc; font-weight: bold;">var</span> t<span style="color: #000066; font-weight: bold;">:</span>Plane = _trailArray<span style="color: #000000;">&#91;</span>i<span style="color: #000000;">&#93;</span><span style="color: #000066; font-weight: bold;">;</span>
        t<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">x</span> <span style="color: #000066; font-weight: bold;">+</span>= <span style="color: #000000;">&#40;</span>_trailArray<span style="color: #000000;">&#91;</span>i <span style="color: #000066; font-weight: bold;">-</span> <span style="color: #000000; font-weight:bold;">1</span><span style="color: #000000;">&#93;</span><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">x</span> <span style="color: #000066; font-weight: bold;">-</span> t<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">x</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">/</span> _length<span style="color: #000066; font-weight: bold;">;</span>
        t<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">y</span> <span style="color: #000066; font-weight: bold;">+</span>= <span style="color: #000000;">&#40;</span>_trailArray<span style="color: #000000;">&#91;</span>i <span style="color: #000066; font-weight: bold;">-</span> <span style="color: #000000; font-weight:bold;">1</span><span style="color: #000000;">&#93;</span><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">y</span> <span style="color: #000066; font-weight: bold;">-</span> t<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">y</span><span style="color: #000000;">&#41;</span> <span style="color: #000066; font-weight: bold;">/</span> _length<span style="color: #000066; font-weight: bold;">;</span>
        t<span style="color: #000066; font-weight: bold;">.</span>z <span style="color: #000066; font-weight: bold;">+</span>= <span style="color: #000000;">&#40;</span>_trailArray<span style="color: #000000;">&#91;</span>i <span style="color: #000066; font-weight: bold;">-</span> <span style="color: #000000; font-weight:bold;">1</span><span style="color: #000000;">&#93;</span><span style="color: #000066; font-weight: bold;">.</span>z <span style="color: #000066; font-weight: bold;">-</span> t<span style="color: #000066; font-weight: bold;">.</span>z<span style="color: #000000;">&#41;</span> <span style="color: #000066; font-weight: bold;">/</span> _length<span style="color: #000066; font-weight: bold;">;</span>
    <span style="color: #000000;">&#125;</span>		
&nbsp;
<span style="color: #000000;">&#125;</span></pre></div></div>

<p><strong>Class and Sample Project:</strong></p>
<p>You can download the fully commented class <a title="trail src" href="http://www.adamcousins.com/source/trail-src.zip" target="_blank">here</a> and I&#8217;ve also made a <a title="sample project" href="http://www.adamcousins.com/source/Away4Mouse.zip" target="_blank">sample project</a> (based on the last post) showing how to integrate it into an away4 scene &#8211; FYI the trail is initialized in Mouse.as (line 111). You can see how when the mouse wiggles as it moves, the movement is sent through the trail.</p>
<p>&nbsp;</p>
<p><strong>Customization</strong></p>
<p>The trail can be customized by changing the texture, size, alpha, blend mode, number of segments, distance between segments and tapering. By experimenting with these parameters you should be able generate a reasonably diverse range of trails (e.g. in this example the blend mode is ADD to give a neon glowing effect, but you can get quite different looks just by changing this param).</p>
<p>Please leave a comment if the source code is unclear or if you have extended the functionality of the trail class to allow for different effects etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adamcousins.com/?feed=rss2&#038;p=49</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Stage3D Test 2</title>
		<link>http://www.adamcousins.com/?p=43</link>
		<comments>http://www.adamcousins.com/?p=43#comments</comments>
		<pubDate>Fri, 13 Jan 2012 12:19:27 +0000</pubDate>
		<dc:creator>adamjamescuz</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[away3d]]></category>
		<category><![CDATA[experiment]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[stage3d]]></category>

		<guid isPermaLink="false">http://www.adamcousins.com/?p=43</guid>
		<description><![CDATA[Following on from the last post here is another test, this time with some code driven movement, lighting and depth of field filter applied to the scene. Click on the image to view the flash (requires flash player 11): If anyone like me to write a full tutorial on all this going into more detail, [...]]]></description>
			<content:encoded><![CDATA[<p>Following on from the last post here is another test, this time with some code driven movement, lighting and depth of field filter applied to the scene.</p>
<p>Click on the image to view the flash (requires flash player 11):<br />
<a href="http://adamcousins.com/flashposts/mouse/index.html" title="Flash Stage 3D mouse" target="_blank"><img src="http://www.adamcousins.com/blogimages/mouse.jpg" alt="mouse 3D" /></a></p>
<p>If anyone like me to write a full tutorial on all this going into more detail, including the full FDT setup, and the various elements in the test please leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adamcousins.com/?feed=rss2&#038;p=43</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Flash Stage3D, Flex 4.6 and FDT 5</title>
		<link>http://www.adamcousins.com/?p=37</link>
		<comments>http://www.adamcousins.com/?p=37#comments</comments>
		<pubDate>Thu, 12 Jan 2012 17:06:05 +0000</pubDate>
		<dc:creator>adamjamescuz</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[away3d]]></category>
		<category><![CDATA[earth]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[geocoordinates]]></category>
		<category><![CDATA[globe]]></category>
		<category><![CDATA[molehill]]></category>
		<category><![CDATA[stage3d]]></category>

		<guid isPermaLink="false">http://www.adamcousins.com/?p=37</guid>
		<description><![CDATA[Here is a quick test I created last May using the (then) newly released flash player 11 and away3d 4 classes. It demonstrates some of the new Stage 3d features which are wrapped up in the brilliant away3d 4 classes, including dynamic lighting, bump mapping and a cube map. The example demonstrates pulling in some [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a quick test I created last May using the (then) newly released flash player 11 and away3d 4 classes. It demonstrates some of the new Stage 3d features which are wrapped up in the brilliant away3d 4 classes, including dynamic lighting, bump mapping and a cube map. The example demonstrates pulling in some lat and long coords for a couple of countries and translating those coords into the 3d space and sticking an interactive 3D marker over the country. You can also spin the globe around using the mouse.</p>
<p>Click on the image to view the flash (requires flash player 11):<br />
<a title="Flash Stage 3D globe" href="http://adamcousins.com/flashposts/globe/index.html" target="_blank"><img src="http://www.adamcousins.com/blogimages/globe.jpg" alt="globe 3D" /></a></p>
<p>Back then there were a load of steps you had to complete in your IDE to get it running, now with the new Flex 4.6 compiler some of those steps are taken out.<br />
All I needed to do was install the <a href="http://http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4.6" target="_blank">Flex 4.6 SDK</a> and latest <a href="https://github.com/away3d/away3d-core-fp11" target="_blank">Away3d 4 src</a>. Once you have these create a new flash ActionScript project in FDT, set the Flex compiler to your new latest one, REMOVE the flex.swc swc from the SDK Library tab under the FDT Build Path and finally set the wmode: &#8220;direct&#8221; param in your html wrapper. You no longer need to add the &#8216;-swf-version=13&#8242; compiler argument or swap out the playerglobal.swc as these are now part of the update.</p>
<p>Then you just need create a folder called &#8216;away3d&#8217; or similar inside your projects src folder and copy the away3d/src classes into it, right click on the src folder and select &#8216;add to classpath&#8217;.</p>
<p>&nbsp;</p>
<p><strong>Project Files:</strong></p>
<p>Some people have asked for the project files / source code  &#8211; click <a title="Globe src" href="http://www.adamcousins.com/source/away4Globe.zip" target="_blank">here</a> to download a zip containing the project files. For the camera movement, basically I&#8217;m rotating an empty ObjectContainer3D located in the centre of the globe based on the mouse x and y positions using TweenMax, and then on each frame loop, applying the empty ObjectContainer3D&#8217;s transform to the camera&#8217;s transform, and moving the camera back so you can see the globe. It should make more sense hopefully if you check out the source code!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adamcousins.com/?feed=rss2&#038;p=37</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Flick the Frog iPhone Trailer</title>
		<link>http://www.adamcousins.com/?p=34</link>
		<comments>http://www.adamcousins.com/?p=34#comments</comments>
		<pubDate>Tue, 27 Dec 2011 12:26:41 +0000</pubDate>
		<dc:creator>adamjamescuz</dc:creator>
				<category><![CDATA[iPhone Apps]]></category>
		<category><![CDATA[flick]]></category>
		<category><![CDATA[frog]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[the]]></category>
		<category><![CDATA[trailer]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.adamcousins.com/?p=34</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe width="560" height="315" src="http://www.youtube.com/embed/ghPWsoE8MGE" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adamcousins.com/?feed=rss2&#038;p=34</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flick the Frog iPhone app out now</title>
		<link>http://www.adamcousins.com/?p=31</link>
		<comments>http://www.adamcousins.com/?p=31#comments</comments>
		<pubDate>Tue, 27 Dec 2011 12:23:14 +0000</pubDate>
		<dc:creator>adamjamescuz</dc:creator>
				<category><![CDATA[iPhone Apps]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[flick]]></category>
		<category><![CDATA[frog]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[the]]></category>

		<guid isPermaLink="false">http://www.adamcousins.com/?p=31</guid>
		<description><![CDATA[The awesome new physics based action puzzler leap &#8216;em up &#8216;Flick the Frog&#8217;, from developer Adam Cousins is live on the Apple App Store today. It is a fun mix of action and puzzle solving and uses the awesome box2d physics engine for realistic and responsive physics. It&#8217;s very addictive, has the &#8216;just one more [...]]]></description>
			<content:encoded><![CDATA[<p>The awesome new physics based action puzzler leap &#8216;em up &#8216;Flick the Frog&#8217;, from developer <a href="http://www.adamcousins.com" target="_blank">Adam Cousins</a> is live on the <a href="http://itunes.apple.com/us/app/flick-the-frog/id479851618?ls=1&amp;mt=8" target="_blank">Apple App Store</a> today.</p>
<p>It is a fun mix of action and puzzle solving and uses the awesome box2d physics engine for realistic and responsive physics. It&#8217;s very addictive, has the &#8216;just one more go&#8217; factor and guaranteed to give you hours of entertainment. It is currently 0.99$, with a free &#8216;Lite&#8217; version on the way.</p>
<p>Make sure to <a title="Flick The Frog on Facebook" href="http://www.facebook.com/pages/Flick-The-Frog/124434207668362" target="_blank">like the Facebook page</a> and <a title="Flick The Frog On Twitter" href="http://twitter.com/#!/flickthefrog" target="_blank">follow Flick the Frog on Twitter</a> to stay tuned for updates.</p>
<p>&nbsp;</p>
<p><a href="http://www.flickthefrogapp.com/images/teaser.jpg"><img class="aligncenter" title="Flick The Frog Screens" src="http://www.flickthefrogapp.com/images/teaser.jpg" alt="Flick The Frog Screens" width="597" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adamcousins.com/?feed=rss2&#038;p=31</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Badadam music for Crysis 2 promo</title>
		<link>http://www.adamcousins.com/?p=19</link>
		<comments>http://www.adamcousins.com/?p=19#comments</comments>
		<pubDate>Tue, 04 Oct 2011 09:59:25 +0000</pubDate>
		<dc:creator>adamjamescuz</dc:creator>
				<category><![CDATA[Music Production]]></category>
		<category><![CDATA[badadam]]></category>
		<category><![CDATA[collective]]></category>
		<category><![CDATA[crysis 2]]></category>
		<category><![CDATA[energetic]]></category>
		<category><![CDATA[pumping]]></category>

		<guid isPermaLink="false">http://www.adamcousins.com/?p=19</guid>
		<description><![CDATA[Earlier this year the agency I work at, Collective London, produced a promo video for the release of Crysis 2. The video involved projecting the game onto various landmarks in London Paris where members of the public could get a sneaky taster before it&#8217;s release. Check out Designer Dan&#8217;s blog post about it for more [...]]]></description>
			<content:encoded><![CDATA[<p>
Earlier this year the agency I work at, <a href="http://www.collectivelondon.com" target="_blank">Collective London</a>, produced a promo video for the release of Crysis 2. The video involved projecting the game onto various landmarks in London Paris where members of the public could get a sneaky taster before it&#8217;s release. Check out <a href="http://www.designerdan.co.uk/2011/03/crysis-2-live-alien-invasion.html" target="_blank">Designer Dan&#8217;s blog post</a> about it for more info and some photos.
</p>
<p>
They used my track <a href="http://audiojungle.net/item/energetic-pumping-electronic-club-track/48872?ref=adamjamescuz" target="_blank">&#8220;Energetic Pumping&#8221;</a> for the soundtrack. Here is the result:
</p>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/HM7GJJLDp-g" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adamcousins.com/?feed=rss2&#038;p=19</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Furnace Tappoles iPhone App</title>
		<link>http://www.adamcousins.com/?p=16</link>
		<comments>http://www.adamcousins.com/?p=16#comments</comments>
		<pubDate>Mon, 03 Oct 2011 21:03:10 +0000</pubDate>
		<dc:creator>adamjamescuz</dc:creator>
				<category><![CDATA[iPhone Apps]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[furnace]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[tappoles]]></category>

		<guid isPermaLink="false">http://www.adamcousins.com/?p=16</guid>
		<description><![CDATA[Produced for the interactive digital production company Furnace, Tappoles is an addictive, fun and visually stunning multiplayer tap&#8217;em up iOS game. Featuring exciting, competetive gameplay, it is the ultimate &#8216;tea decider&#8217;. Art and design assets by Bora Demirbilek , features music from Badadam .]]></description>
			<content:encoded><![CDATA[<p>Produced for the interactive digital production company <a href="http://www.furnacedigital.com"  target="_blank">Furnace</a>, Tappoles is an addictive, fun and visually stunning multiplayer tap&#8217;em up iOS game.
</p>
<p>
Featuring exciting, competetive gameplay, it is the ultimate &#8216;tea decider&#8217;. Art and design assets by <a href="http://www.blogobora.com" target="_blank">Bora Demirbilek </a>, features music from <a href="http://www.audiojungle.com/users/adamjamescuz?ref=adamjamescuz"  target="_blank">Badadam </a>.
</p>
<p><img src="http://adamcousins.com/blogimages/tappoles.png" alt="in game sreenshot" /></p>
<p><a href="http://itunes.apple.com/gb/app/tappoles/id441272179?mt=8" target="_blank"><img src="http://adamcousins.com/blogimages/appstore.png"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adamcousins.com/?feed=rss2&#038;p=16</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Badadam Track</title>
		<link>http://www.adamcousins.com/?p=13</link>
		<comments>http://www.adamcousins.com/?p=13#comments</comments>
		<pubDate>Mon, 03 Oct 2011 21:02:16 +0000</pubDate>
		<dc:creator>adamjamescuz</dc:creator>
				<category><![CDATA[Music Production]]></category>

		<guid isPermaLink="false">http://www.adamcousins.com/?p=13</guid>
		<description><![CDATA[&#8220;Whistle Blower&#8221; from Badadam. Filthy guitars and huge dirty bass fight for attention amongst tight, solid beats. Huge build ups and euphoric synth leads make the track take off. Has been used for the soundtrack for the excellent video display promo &#8220;Fashion Promo 4&#8243; by motion graphics artist Alex Zlatev. Check out his stuff, it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>
&#8220;Whistle Blower&#8221; from Badadam. Filthy guitars and huge dirty bass fight for attention amongst tight, solid beats. Huge build ups and euphoric synth leads make the track take off.
</p>
<p>
Has been used for the soundtrack for the excellent video display promo <a href="http://videohive.net/item/fashion-promo-4/545315?ref=adamjamescuz" title="Fashion Promo 4" target="_blank">&#8220;Fashion Promo 4&#8243;</a> by motion graphics artist <a href="http://videohive.net/user/AlexZlatev" title="Alex Zlatev" target="_blank">Alex Zlatev</a>. Check out his stuff, it&#8217;s great!
</p>
<p><object height="81" width="100%"><param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F21543973&amp;show_comments=true&amp;auto_play=false&amp;color=000000"></param><param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F21543973&amp;show_comments=true&amp;auto_play=false&amp;color=000000" type="application/x-shockwave-flash" width="100%"></embed></object>   <span><a href="http://soundcloud.com/badadam/whistle-blower">Whistle Blower</a> by <a href="http://soundcloud.com/badadam">adamjamescuz</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adamcousins.com/?feed=rss2&#038;p=13</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

