<?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>Lost In Actionscript - Shane McCartney &#187; Work</title>
	<atom:link href="http://www.lostinactionscript.com/blog/index.php/category/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lostinactionscript.com/blog</link>
	<description>Lost In Actionscript</description>
	<lastBuildDate>Sat, 06 Mar 2010 04:03:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Camera Class Quirks with FMS</title>
		<link>http://www.lostinactionscript.com/blog/index.php/2008/06/16/camera-class-quirks-with-fms/</link>
		<comments>http://www.lostinactionscript.com/blog/index.php/2008/06/16/camera-class-quirks-with-fms/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 00:34:36 +0000</pubDate>
		<dc:creator>Shane McCartney</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.lostinactionscript.com/blog/index.php/2008/06/16/camera-class-quirks-with-fms/</guid>
		<description><![CDATA[I did a project recently requiring a web camera recording to Flash Media Server 3. Whilst I was working on this I found out some interesting (annoying) things about the Camera class. These include :
Tip 1.
When initiating a connection to the Camera it's best to do this through the Microphone class. Sounds odd I know! [...]]]></description>
			<content:encoded><![CDATA[<p>I did a project recently requiring a web camera recording to Flash Media Server 3. Whilst I was working on this I found out some interesting (annoying) things about the Camera class. These include :</p>
<h4>Tip 1.</h4>
<p>When initiating a connection to the Camera it's best to do this through the Microphone class. Sounds odd I know! The reason for this is when this code is called :<br />
<code><br />
var camera:Camera = Camera.getCamera();<br />
ns.attachCamera(camera);<br />
</code></p>
<p>there's a hang just after the allow button is selected on the security dialog panel. This is rationalled in the Adobe Flash help as 'Scanning the hardware for cameras takes time'. So it's best to trigger the security panel via<br />
<code><br />
var microphone:Microphone = Microphone.getMicrophone();<br />
ns.attachAudio(microphone);<br />
</code><br />
then listen for the Status Event of UnMuted or later in your application call<br />
<code><br />
var camera:Camera = Camera.getCamera();<br />
ns.attachCamera(camera);<br />
</code></p>
<p>There will always be a delay on this code <code>ns.attachCamera(camera);</code> but at least via activating the Microphone first you won't get a bug like delay of the security panel not disappearing immediately after the allow button is pressed.</p>
<h4>Tip 2.</h4>
<p>When recording to a Flash Media Server make sure the camera has activity via the Activity Status Event before publishing the stream. Otherwise you may get a static or black frame at the beginning of the recorded stream.</p>
<h4>Tip 3.</h4>
<p>To disable/turn off the Camera after a recording is complete do so via :<br />
<code><br />
ns.attachCamera(null);<br />
</code><br />
Though this is actually documented for AS3 it wasn't in AS2. Once this has been done the Camera will need to be reconnected for a new recording and users will experience this delay again as the Camera starts as mentioned above.</p>
<h4>Tip 4.</h4>
<p>When embedding your Flash do not change the wmode from default. Otherwise you will get problems on specific browser configurations i.e. Firefox PC . These problems include that the allow button on the security dialog box will not hide on click.</p>
<h4>Tip 5.</h4>
<p>When detecting wether the user has a web camera you can't rely on <code>Camera.names.length()</code>. This is because there are scenarios whereby devices will appear in the list which may not be webcameras but devices like TV capture cards and can not be used as a camera. The solution for this is when the camera is attached via<br />
<code><br />
var camera:Camera = Camera.getCamera();<br />
ns.attachCamera(camera);<br />
</code></p>
<p>Then add a time out catch which can be cleared via the camera's activity event, so that if camera activity occurs within the time out of say 5 seconds then clear the timeout. Otherwise if the timeout happens handle the error scenario.</p>
<h4>Tip 6.</h4>
<p>Further to the above it's good at the point of displaying the error message to give the user an option to fix this problem. This is because it may simply be a matter of the user changing the default camera selected. This can be done via adding a button and firing the Camera devices security dialog by the following :<br />
<code><br />
Security.showSettings(SecurityPanel.CAMERA);<br />
</code></p>
<p>It's interesting to know that when the user is selecting options from the Camera devices list it's possible to detect wether the option selected is actually a Camera. Once again this is done via <code>camera.activityLevel>0</code> on the Camera's activity event. Sadly there is <a href="http://bugs.adobe.com/jira/browse/FP-41">not yet a reliable way</a> to detect when the dialog panel close event occurs. So with this in mind when the user has picked a camera, you should make a noticible visual change somewhere behind the dialog box (and overlay screen) so the user will proceed to the close button - happy days.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lostinactionscript.com/blog/index.php/2008/06/16/camera-class-quirks-with-fms/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>The Seeker : The Dark Is Rising</title>
		<link>http://www.lostinactionscript.com/blog/index.php/2007/08/04/the-seeker-the-dark-is-rising/</link>
		<comments>http://www.lostinactionscript.com/blog/index.php/2007/08/04/the-seeker-the-dark-is-rising/#comments</comments>
		<pubDate>Fri, 03 Aug 2007 15:34:19 +0000</pubDate>
		<dc:creator>Shane McCartney</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.lostinactionscript.com/blog/index.php/2007/08/04/the-seeker-the-dark-is-rising/</guid>
		<description><![CDATA[For the last month I have been working on 2 phases of a movie site called the The Seeker : The Dark Is Rising. The Seeker is Eragon meets Harry Potter meets Peter Pan which has been a challenge in it's self. Though additionally to this it's been even more challenging to get through the [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.seekthesigns.com' title='The Seeker : The Dark Is Rising'><img src='http://www.lostinactionscript.com/blog/wp-content/uploads/2007/08/darkisrising.jpg' alt='The Seeker : The Dark Is Rising' /></a>For the last month I have been working on 2 phases of a movie site called the <a href="http://www.seekthesigns.com">The Seeker : The Dark Is Rising</a>. The Seeker is Eragon meets Harry Potter meets Peter Pan which has been a challenge in it's self. Though additionally to this it's been even more challenging to get through the build as the site is completely multilingual with exchangeable fonts. This sites a big load I know but the guys wanted epic and they got it in file size too - but hey those are some nice animations. One interesting part to the site is the ability for users to unlock site content by codes / sign sequences found on external media. Then like many movie sites people can embed some Flash into there page to track there progress of finding the signs you can see mine below. </p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_www.seekthesigns_1150200391"
			class="flashmovie"
			width="320"
			height="320">
	<param name="movie" value="http://www.seekthesigns.com/badge2.swf?id=shane565&domain=http://www.seekthesigns.com" />
	<param name="wmode" value="transparent" />
	<param name="bgcolor" value="#262B2D" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.seekthesigns.com/badge2.swf?id=shane565&domain=http://www.seekthesigns.com"
			name="fm_www.seekthesigns_1150200391"
			width="320"
			height="320">
		<param name="wmode" value="transparent" />
		<param name="bgcolor" value="#262B2D" />
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>There are also 6 mini games which can be embedded in webpages <a href="http://www.seekthesigns.com/games.html">here</a>.</p>
<p><a href="http://www.seekthesigns.com">Check out the site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lostinactionscript.com/blog/index.php/2007/08/04/the-seeker-the-dark-is-rising/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Fantastic 4 &#8211; See Yourself On Fire And Record It!</title>
		<link>http://www.lostinactionscript.com/blog/index.php/2007/06/16/fantastic-4-see-yourself-on-fire-and-record-it/</link>
		<comments>http://www.lostinactionscript.com/blog/index.php/2007/06/16/fantastic-4-see-yourself-on-fire-and-record-it/#comments</comments>
		<pubDate>Fri, 15 Jun 2007 14:00:18 +0000</pubDate>
		<dc:creator>Shane McCartney</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">/blog/index.php/2007/06/16/fantastic-4-see-yourself-on-fire-and-record-it/</guid>
		<description><![CDATA[The Flame On site promotes the sequel movie for Fantastic Four - Rise of the Silver Surfer. Using the site and a web camera you can see your self on fire just like the Human Torch character from the film. You can either use the site as a toy or record a 10 second video [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flameonwebcam.com"><img src='http://www.lostinactionscript.com/blog/wp-content/uploads/2007/06/become1.jpg' alt='Become Johnny Storm the Human Torch' /></a>The <a href="http://www.flameonwebcam.com">Flame On site</a> promotes the sequel movie for Fantastic Four - Rise of the Silver Surfer. Using the site and a web camera you can see your self on fire just like the Human Torch character from the film. You can either use the site as a toy or record a 10 second video clip. Which you can send onto friends or embed the 	<i>'FlameOn'</i><br />
 code into your website. Using the 'Flame On' code you can further personalize the video by writing out your name or message in fire for those who are not content with just seeing themselves in fire. </p>
<p>On a technical note the site uses Flash Media Server 2 to record the clips. This is our first experiment in using this particular revision of Flash technology last time for me was Flash Communication Server way back when. </p>
<p>For me I find this type of site interesting to monitor the ratio's of people using this site as it hinges completely on having a web camera so I'll be keeping an eye over the stats for the next few weeks as the movie is out in cinemas in the US yesterday and Australia June the 21st. </p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_badge_1081220076"
			class="flashmovie"
			width="345"
			height="260">
	<param name="movie" value="http://www.flameonwebcam.com/swfs/badge.swf" />
	<param name="flashvars" value="name=LOST IN AS" />
	<param name="bgcolor" value="#000000" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.flameonwebcam.com/swfs/badge.swf"
			name="fm_badge_1081220076"
			width="345"
			height="260">
		<param name="flashvars" value="name=LOST IN AS" />
		<param name="bgcolor" value="#000000" />
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p><a href="http://www.flameonwebcam.com">Visit the site - Flame On!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lostinactionscript.com/blog/index.php/2007/06/16/fantastic-4-see-yourself-on-fire-and-record-it/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Frubalia in a Frenzy</title>
		<link>http://www.lostinactionscript.com/blog/index.php/2007/05/21/frubalia-in-a-frenzy/</link>
		<comments>http://www.lostinactionscript.com/blog/index.php/2007/05/21/frubalia-in-a-frenzy/#comments</comments>
		<pubDate>Mon, 21 May 2007 10:49:48 +0000</pubDate>
		<dc:creator>Shane McCartney</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">/blog/index.php/2007/05/21/frubalia-in-a-frenzy/</guid>
		<description><![CDATA[Just the other week I finished off a new game called 'Fruba Frenzy' for the Uncle Toby's Frubalia site and today was approved it to go live. The game is basically the popular Bejeweled game recreated for Frubalia. I had fun doing the particle effects to make it visually exciting and I think it helps [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.rollups.com.au/games/frubafrenzy/index.php' title='Fruba Frenzy Game'><img src='http://www.lostinactionscript.com/blog/wp-content/uploads/2007/05/frubafrenzy.jpg' alt='Fruba Frenzy Game' /></a>Just the other week I finished off a new game called 'Fruba Frenzy' for the Uncle Toby's <a href="http://www.rollups.com.au/">Frubalia</a> site and today was approved it to go live. The game is basically the popular Bejeweled game recreated for Frubalia. I had fun doing the particle effects to make it visually exciting and I think it helps with the overall game play. I tried to make the game performance the best as I could for the slower computers but only so much can be done and some people may find it running a little slower.</p>
<p><a href="http://www.rollups.com.au/games/frubafrenzy/index.php">Play the game here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lostinactionscript.com/blog/index.php/2007/05/21/frubalia-in-a-frenzy/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>3X / X-Series &#8211; Three&#8217;s answer for premium 3G mobile services</title>
		<link>http://www.lostinactionscript.com/blog/index.php/2007/03/27/3x-x-series-threes-answer-for-premium-3g-mobile-services/</link>
		<comments>http://www.lostinactionscript.com/blog/index.php/2007/03/27/3x-x-series-threes-answer-for-premium-3g-mobile-services/#comments</comments>
		<pubDate>Tue, 27 Mar 2007 10:58:30 +0000</pubDate>
		<dc:creator>Shane McCartney</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">/blog/index.php/2007/03/27/3x-x-series-threes-answer-for-premium-3g-mobile-services/</guid>
		<description><![CDATA[Just today the X-Series Australia site was launched by the place I work - Soap. The site is Three mobiles answer to premium grade 3G mobile services.
Please excuse the the cheesy 'next generation' site name - X-Series. Three did originally want '3X', the rationalle being the sites about there new 3G services and 3xX = [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://xseries.three.com.au/xseries/"><img src='http://www.lostinactionscript.com/blog/wp-content/uploads/2007/03/xseries.jpg' alt='X-Series Three Mobile' /></a>Just today the <a href="http://xseries.three.com.au/xseries/">X-Series Australia</a> site was launched by the place I work - Soap. The site is Three mobiles answer to premium grade 3G mobile services.</p>
<p>Please excuse the the cheesy 'next generation' site name - X-Series. Three did originally want '3X', the rationalle being the sites about there new 3G services and 3xX = XXX, sooo it didn't stick. I just wished with the name conclusion (X-Series) the branding steered clear of the OSX look! If only to be original. But hey, <a href="http://www.thebestpageintheuniverse.net/c.cgi?u=macs_cant">Macs are sposed to cool</a> and like all youth targetted campaigns and there brand - Three thinks they are also, so merrily down this road they travelled.</p>
<p>This site was a huge effort by many of my work colleagues: Brad, Christian, Jon, Matt and I did the Flash. Most was done from scratch, while the rest was provided from the client and was localised. Though the Flash work done is nothing out of the ordinary. Though one thing I think is important pointing out is that this site is hybrid (not some full flash monster), so this site works exactly the same using alternative content ( except the product demos ;) ) - which I think is important. </p>
<p>Huge credit goes to John - Mr <a href="http://www.freaksauce.com/">Freaksauce</a> for coming in mid project, managing all the content changes, CSS and adding in some <a href="http://jquery.com/demo/thickbox/">thickbox</a> loving for the contact forms, which results in a better user experience in the transaction/enquiry process.</p>
<p><a href="http://xseries.three.com.au/xseries/">Have a look at the site here</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.lostinactionscript.com/blog/index.php/2007/03/27/3x-x-series-threes-answer-for-premium-3g-mobile-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excuse me, have you Read Zero?</title>
		<link>http://www.lostinactionscript.com/blog/index.php/2007/03/05/well-excuse-me-have-you-read-zero/</link>
		<comments>http://www.lostinactionscript.com/blog/index.php/2007/03/05/well-excuse-me-have-you-read-zero/#comments</comments>
		<pubDate>Mon, 05 Mar 2007 02:39:06 +0000</pubDate>
		<dc:creator>Shane McCartney</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.flashdynamix.com/blog/?p=17</guid>
		<description><![CDATA[Us guys at Soap have been involved over the past 6 months on an online magazine called 'Red Zero' basically it's an online fashion magazine. I have to say this months issue#3 is the best yet and I know it aint saying alot - as some of the design is misdirected. Anyhow I have been [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.redzero.com.au"><img src='http://www.flashdynamix.com/blog/wp-content/uploads/2007/03/redzero.jpg' alt='Red Zero Issue #3' /></a>Us guys at Soap have been involved over the past 6 months on an online magazine called 'Red Zero' basically it's an online fashion magazine. I have to say this months issue#3 is the best yet and I know it aint saying alot - as some of the design is misdirected. Anyhow I have been involved doing some of the spreads (the main engine was done by <a href="http://www.tripleoptix.com">Mike</a>) and some are better to work on than others - thought I would post up some example links of just some of the better ones I did.</p>
<p><a href="http://www.flashdynamix.com/staging/redZero/cover.html">Magazine Cover</a><br />
<a href="http://www.flashdynamix.com/staging/redZero/joshGoot.html">Josh Goot Article</a><br />
<a href="http://www.flashdynamix.com/staging/redZero/suite302.html">Suite 302 Article</a><br />
<a href="http://www.flashdynamix.com/staging/redZero/TheLongAfternoon.html">The Long Afternoon Article</a></p>
<p><a href="http://www.redzero.com.au">You can read issue 3 here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lostinactionscript.com/blog/index.php/2007/03/05/well-excuse-me-have-you-read-zero/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Frubalia Where Fruba&#8217;s Click</title>
		<link>http://www.lostinactionscript.com/blog/index.php/2007/03/01/frubalia-where-frubas-click/</link>
		<comments>http://www.lostinactionscript.com/blog/index.php/2007/03/01/frubalia-where-frubas-click/#comments</comments>
		<pubDate>Thu, 01 Mar 2007 00:59:26 +0000</pubDate>
		<dc:creator>Shane McCartney</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.flashdynamix.com/blog2/?p=7</guid>
		<description><![CDATA[The other month us guys at Soap released a new site for Uncle Toby's rollups for there fruit confectionary product rollups. The site is amazing well illustrated by Ron, I think the coolest thing is the game Chris made called Fruba Fling. I only worked on the boring stuff like login, signup, creating a profile [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rollups.com.au/"><img src='http://www.flashdynamix.com/blog/wp-content/uploads/2007/03/20070301-rollups1.jpg' alt='Frubalia - Rollups' /></a>The other month us guys at Soap released a new site for Uncle Toby's rollups for there fruit confectionary product rollups. The site is amazing well illustrated by <a href="http://www.ronchydesign.com">Ron</a>, I think the coolest thing is the game Chris made called <a href="http://www.rollups.com.au/games/frubafling/">Fruba Fling</a>. I only worked on the boring stuff like login, signup, creating a profile called a <a href="http://www.rollups.com.au/frubacard/?fruba=shane">'FrubaCard'</a>, password retrieval and some of the animations in the Frols (They are the site sections for each of the Frubas - some of the easter eggs added were fun to do) and a <a href="http://www.rollups.com.au/games/frubapaint.php">colouring in game</a> - woo hoo! There were soo many people involved in this site <a href="http://www.mrtruffle.com">Ashley</a>, <a href="http://www.freaksauce.com">Jon</a>, Matt, Suren, James, Ross plus more I am sure. </p>
<p>Anyway <a href="http://www.rollups.com.au/">check it out</a> there is soon to be even cooler stuff added in Phase 2 will keep you posted. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.lostinactionscript.com/blog/index.php/2007/03/01/frubalia-where-frubas-click/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The Real Australia : What the Bloody Hell is that ?</title>
		<link>http://www.lostinactionscript.com/blog/index.php/2007/02/27/the-real-australia-what-the-bloody-hell-is-that/</link>
		<comments>http://www.lostinactionscript.com/blog/index.php/2007/02/27/the-real-australia-what-the-bloody-hell-is-that/#comments</comments>
		<pubDate>Tue, 27 Feb 2007 01:03:53 +0000</pubDate>
		<dc:creator>Shane McCartney</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.flashdynamix.com/blog2/?p=9</guid>
		<description><![CDATA[Not so long ago we finished off a site for Tourism WA to promote the Real Australia = Western Australia. Which is where I herald from, atm I am located in Sydney NSW. Any case its now become a huge site content wise and something I quite like to say I was involved with. It [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.therealaustralia.com' title='The Real Australia'><img src='http://www.lostinactionscript.com/blog/wp-content/uploads/2007/07/20070227-realaus.jpg' alt='The Real Australia' /></a>Not so long ago we finished off a site for Tourism WA to promote the Real Australia = Western Australia. Which is where I herald from, atm I am located in Sydney NSW. Any case its now become a huge site content wise and something I quite like to say I was involved with. It started out as a Virtual Tour with some games and a Travel Profiler. But most recently <a href="http://www.tripleoptix.com">Mike</a> added in some great new items to the site. <a href="http://www.therealaustralia.com/gallery.html">A Flickr driven Flash image gallery</a> of WA as well a new site section called <a href="http://www.therealaustralia.com/realStuff.html">'Real Stuff'</a> to link back to some existing content and some new (A slang dictionary dictionary using the 00's cliche page turn engine).</p>
<p>Ash and I did the original Flash build which was pretty involving but I think the coolest thing is to see it extended and added to and knowing it has that capacity as alot of the content was XML driven. Again <a href="http://www.enzymedesign.com.au">Bradman </a>and the <a href="http://www.ronchydesign.com">Ronchy Ron</a> came to aid with the design.</p>
<p><a href="http://www.therealaustralia.com">I think the only thing this site's missing is a VR BBQ</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lostinactionscript.com/blog/index.php/2007/02/27/the-real-australia-what-the-bloody-hell-is-that/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ice Bitch Drift Game</title>
		<link>http://www.lostinactionscript.com/blog/index.php/2007/02/05/ice-bitch-drift-game/</link>
		<comments>http://www.lostinactionscript.com/blog/index.php/2007/02/05/ice-bitch-drift-game/#comments</comments>
		<pubDate>Mon, 05 Feb 2007 01:06:38 +0000</pubDate>
		<dc:creator>Shane McCartney</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.flashdynamix.com/blog2/?p=10</guid>
		<description><![CDATA[Recently I finished off a car racing/drift game for 20th Century Fox. The turn around was pretty tight 2 weeks not just including the highscore engine but also send to friend functionality. Good thing we (Soap) have done plenty of this kinda thing before!! The game is in effort of the recent release of the [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.foxinternational.com/epicmovie/game' title='Epic Movies - Ice Bitch Drift Game'><img src='http://www.lostinactionscript.com/blog/wp-content/uploads/2007/07/20070227-icebitch.jpg' alt='Epic Movies - Ice Bitch Drift Game' /></a>Recently I finished off a car racing/drift game for 20th Century Fox. The turn around was pretty tight 2 weeks not just including the highscore engine but also send to friend functionality. Good thing we (Soap) have done plenty of this kinda thing before!! The game is in effort of the recent release of the movie 'Epic Movie' - funny enough I ain't seen it. Given the tight deadline it turned out OK and has an additional mini game in it by entering the warddrobe. The stats to date have been pretty good about 130K unique visitors since it started in end of Jan 2007.</p>
<p>On another note we also got pulled up in Adnews for ripping the game concept from Amnesia's car racing game from 2 years ago. Funny thing was that they said it has a similar track design and score engine. Well I ask you how many ways can u peel a bannana ??</p>
<p>Credits also go out to the multi-talented client whore <a target="_blank" href="http://www.3xpression.com/">Christian</a></p>
<p><a target="blank" href="http://www.foxinternational.com/epicmovie/game">Play the game here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lostinactionscript.com/blog/index.php/2007/02/05/ice-bitch-drift-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FOXTEL Remote Record</title>
		<link>http://www.lostinactionscript.com/blog/index.php/2007/01/02/foxtel-remote-record/</link>
		<comments>http://www.lostinactionscript.com/blog/index.php/2007/01/02/foxtel-remote-record/#comments</comments>
		<pubDate>Tue, 02 Jan 2007 01:08:49 +0000</pubDate>
		<dc:creator>Shane McCartney</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.flashdynamix.com/blog2/?p=11</guid>
		<description><![CDATA[This has to be one of the most structured Flash project I have ever delivered. Basically it's a online TV Guide for FOXTEL - ho hum. But more than just that you can record programmes using the intermanet to your home set top box. I was the solo Flash Developer on this project and I [...]]]></description>
			<content:encoded><![CDATA[<p><a href='https://www.foxtel.com.au/EPG/EPG.aspx' title='FOXTEL Online TV Guide'><img src='http://www.lostinactionscript.com/blog/wp-content/uploads/2007/07/20070227-foxtelonlineguide.jpg' alt='FOXTEL Online TV Guide' /></a>This has to be one of the most structured Flash project I have ever delivered. Basically it's a online TV Guide for FOXTEL - ho hum. But more than just that you can record programmes using the intermanet to your home set top box. I was the solo Flash Developer on this project and I think I used up every Design Pattern I know of - geek. I will post up the class path shortly. <a target="blank" href="http://www.enzymedesign.com.au">Bradman </a>did some excellent work on the designs and kept me inline so it was pixel perfection. Anyway this project drained a good 2 1/2 months out of my life, the techy backend was done by the guys at Oakton.</p>
<p>The data communication is all done by SOAP (and not Soap where I work :) ) and 1 down side was the requirement to send all the data by HTTPS which means the data is bloated due to encryption. In any case they (Oakton) did a good job at these dynamic XML queries coming back as fast as they do. For later releases I hope we can take advantage of at least Gzip to bring down the size of these XML packets that will be phase 1.1 as they say. As well hopefully some cool shit like video previews .... Anyway there has been alot of <a href="http://www.if.com.au/press/2006/11/29.html">positive PR</a> which is good.</p>
<p><a target="blank" href="https://www.foxtel.com.au/EPG/EPG.aspx">Try it out</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lostinactionscript.com/blog/index.php/2007/01/02/foxtel-remote-record/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>
