<?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"
	>

<channel>
	<title>deleteaso</title>
	<atom:link href="http://deleteaso.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://deleteaso.com</link>
	<description>When something's not working delete aso files</description>
	<pubDate>Thu, 20 Nov 2008 02:59:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>Silverlight 3</title>
		<link>http://deleteaso.com/silverlight-3/</link>
		<comments>http://deleteaso.com/silverlight-3/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 03:38:08 +0000</pubDate>
		<dc:creator>julian</dc:creator>
		
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://deleteaso.com/?p=67</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://deleteaso.com/silverlight-3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing Parallels</title>
		<link>http://deleteaso.com/installing-parallels/</link>
		<comments>http://deleteaso.com/installing-parallels/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 14:28:01 +0000</pubDate>
		<dc:creator>julian</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://deleteaso.com/?p=61</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://deleteaso.com/installing-parallels/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Updating Wordpress</title>
		<link>http://deleteaso.com/updating-wordpress/</link>
		<comments>http://deleteaso.com/updating-wordpress/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 14:21:56 +0000</pubDate>
		<dc:creator>julian</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://deleteaso.com/?p=59</guid>
		<description><![CDATA[I finally got around to updating Wordpress this week and ran into one problem. Once I finished updating all the files I couldn&#8217;t log into the admin. it turns out that I needed to disable my plugins before updating, something I would have known if I had read the advanced upgrade instructions. So if you [...]]]></description>
			<content:encoded><![CDATA[<p>I finally got around to updating Wordpress this week and ran into one problem. Once I finished updating all the files I couldn&#8217;t log into the admin. it turns out that I needed to disable my plugins before updating, something I would have known if I had read the advanced upgrade instructions. So if you don&#8217;t happen to do that before you update the simple trick is to rename your plugins directory to something else. Then you can log in to the admin and preform your database upgrade if necessary. Once that&#8217;s done you can rename your plugins directory back and everything should be back to normal after that.</p>
]]></content:encoded>
			<wfw:commentRss>http://deleteaso.com/updating-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Having Fun With The iPhone SDK</title>
		<link>http://deleteaso.com/having-fun-with-the-iphone-sdk/</link>
		<comments>http://deleteaso.com/having-fun-with-the-iphone-sdk/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 15:12:52 +0000</pubDate>
		<dc:creator>julian</dc:creator>
		
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://deleteaso.com/?p=57</guid>
		<description><![CDATA[I have been playing with the iPhone SDK since the spring time and it&#8217;s a lot of fun to program for the platform. There is something to be said for having something tangible at the end of the day. You can be anywhere and pull out your phone and say &#8220;Hey, check out what I [...]]]></description>
			<content:encoded><![CDATA[<p>I have been playing with the iPhone SDK since the spring time and it&#8217;s a lot of fun to program for the platform. There is something to be said for having something tangible at the end of the day. You can be anywhere and pull out your phone and say &#8220;Hey, check out what I have been working on&#8221;.</p>
<p>I have been porting over some Flash code libraries and games to it, which has been interesting because there are some differences on how Objective-C works compared to Flash.</p>
<p>The first and potentially most obvious is positioning objects. The counterpart to DisplayObject in the SDK is UIView. There are several properties that allow you to position objects, but the one you want to use is UIView.center. This is where Flash and the IPhone SDK differ a little because Flash, usually, deals with x,y in the top left, where the SDK deals with the registration point in the center. When you are porting over design and graphics from the Flash and laying everything out in Flash it&#8217;s easier to deal with top left instead of doing all the conversion to the center. Here is some methods that I wrote that subclasses UIView. I should also mention that <em>self</em> in Objective-C is <em>this</em> in Flash.</p>
<p>-(void)x:(float)_x<br />
{<br />
    self.center = CGPointMake( _x + ( self.bounds.size.width / 2 ), self.center.y );<br />
}</p>
<p>-(void)y:(float)_y<br />
{<br />
    self.center = CGPointMake( self.center.x, _y + ( self.bounds.size.height / 2 ) );<br />
}</p>
<p>-(float)y<br />
{<br />
    return self.center.y - ( self.bounds.size.height / 2 );<br />
}</p>
<p>-(float)x<br />
{<br />
    return self.center.x - ( self.bounds.size.width / 2 );<br />
}</p>
<p>You can also use the frame property to position items, but things will go a little wonky when trying to do a CGAffineTransform on the object at the same time you are position it. For example, rotating the object at the same time you are animating it&#8217;s position. </p>
<p>Some of you might be saying we&#8217;ll why don&#8217;t you use Interface Builder to lay everything out? The biggest reason is that we only have a few people working on OSX so the designers don&#8217;t have access to it. But I will say that Interface Builder is a wicked application and I am hoping Thermo lives up to it.</p>
]]></content:encoded>
			<wfw:commentRss>http://deleteaso.com/having-fun-with-the-iphone-sdk/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PNG Image Cropper</title>
		<link>http://deleteaso.com/png-image-cropper/</link>
		<comments>http://deleteaso.com/png-image-cropper/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 13:33:28 +0000</pubDate>
		<dc:creator>julian</dc:creator>
		
		<category><![CDATA[Conferences]]></category>

		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://deleteaso.com/png-image-cropper/</guid>
		<description><![CDATA[At FOTB Brighton I presented on our process for developing the Fairies and Dragons Happy Meal toys. One of the things I showed was how we took a png sequence exported from Maya and cropped them to reduce the amount of alpha. To do that I built a WPF application in C# that would look [...]]]></description>
			<content:encoded><![CDATA[<p>At <a href="http://www.flashonthebeach.com" target="_blank">FOTB Brighton</a> I presented on our process for developing the <a href="http://fuelindustries.com/casestudies/fairiesanddragons/" target="_blank">Fairies and Dragons Happy Meal</a> toys. One of the things I showed was how we took a png sequence exported from Maya and cropped them to reduce the amount of alpha. To do that I built a WPF application in C# that would look at a folder and read in every png that was in there. For every image the application runs through each pixel and tries to determine all of the unnecessary alpha and crops it. The cool thing is that when the file gets saved out again it saves it with the x,y offset in the filename so that we can use a JSFL script to import all the images so the animation lines up.</p>
<p>Here is an example. Note : Everything in red is actually alpha I just filled it in for demonstration purposes.</p>
<p><img src="http://deleteaso.com/images/imagecropper/imagecropper.jpg" title="Image Cropper" alt="Image Cropper" border="0" height="250" width="500" /></p>
<p>First select a input folder. This folder would have all of your images are in. Make sure the images are named sequentially.<br />
Next select a output folder. It&#8217;s best if this folder is empty as this will be the folder where all of the cropped images will be placed.</p>
<p><img src="http://deleteaso.com/images/imagecropper/Animation_Test.1.jpg" title="Original Image" alt="Original Image" height="300" width="400" /></p>
<p>Here is a sample of the original image named Animation_Test.1.jpg.</p>
<p><img src="http://deleteaso.com/images/imagecropper/Animation_Test.1_163_95.jpg" title="Cropped Image" alt="Cropped Image" height="116" width="78" /></p>
<p>Here is the cropped image with the new name Animation_Test.1._163_95.jpg<br />
As you can see it appends the x,y offset to the end of the filename ( 163, 95 ).</p>
<p>The final step is to run the JSFL command included with the application.</p>
<p>Select an empty layer on a timeline and run the command. It will prompt you to select a file from your output folder. Don&#8217;t worry which file it is because it is simply getting the folder not the file path. Flash will now import each image in the folder to a new keyframe and position the image at the x,y offset in the filename - in this case 163,95.</p>
<p>Feel free to download the <a href="http://deleteaso.com/downloads/source/ImageCropper_WPF.zip" target="_blank">application</a> and give it a try.<br />
You&#8217;ll need to have .NET 3 Framework installed for the application to run.</p>
]]></content:encoded>
			<wfw:commentRss>http://deleteaso.com/png-image-cropper/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flash On The Beach 09 Miami</title>
		<link>http://deleteaso.com/flash-on-the-beach-09-miami/</link>
		<comments>http://deleteaso.com/flash-on-the-beach-09-miami/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 14:49:19 +0000</pubDate>
		<dc:creator>julian</dc:creator>
		
		<category><![CDATA[Conferences]]></category>

		<guid isPermaLink="false">http://deleteaso.com/flash-on-the-beach-09-miami/</guid>
		<description><![CDATA[In case you missed the announcement at Flash on the Beach this year, the conference will be held in North American for the first time next April. Spring time is when the conference circuit really starts to get busy and I can&#8217;t think of a better way to start it then spending a week in [...]]]></description>
			<content:encoded><![CDATA[<p>In case you missed the announcement at Flash on the Beach this year, the conference will be held in North American for the first time next April. Spring time is when the conference circuit really starts to get busy and I can&#8217;t think of a better way to start it then spending a week in South Beach. Like every Flash on the Beach conference it is likely to sell out so make sure to get your tickets early. The <a href="http://www.flashonthebeach.com" target="_blank">conference site</a> has been refreshed and tickets go on sale in November. This year I went to my first Flash on the Beach in Brighton and had an absolute blast and I am sure 09 Miami and Brighton will be no different.</p>
]]></content:encoded>
			<wfw:commentRss>http://deleteaso.com/flash-on-the-beach-09-miami/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pixel Bender Install Location OSX</title>
		<link>http://deleteaso.com/pixel-bender-install-location-osx/</link>
		<comments>http://deleteaso.com/pixel-bender-install-location-osx/#comments</comments>
		<pubDate>Sat, 18 Oct 2008 19:15:19 +0000</pubDate>
		<dc:creator>julian</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://deleteaso.com/pixel-bender-install-location-osx/</guid>
		<description><![CDATA[I was finally able to purchase and download Flash CS3 CS4 yesterday after a couple of days of trying. The adobe store just wouldn&#8217;t let me purchase a download. Anyways all is good now. I have been going through all of the new features in order to do a lunch and learn at our offices [...]]]></description>
			<content:encoded><![CDATA[<p>I was finally able to purchase and download Flash <strike>CS3</strike> CS4 yesterday after a couple of days of trying. The adobe store just wouldn&#8217;t let me purchase a download. Anyways all is good now. I have been going through all of the new features in order to do a lunch and learn at our offices showing off what&#8217;s new. I&#8217;ll be posting stuff as I get my examples together as well as some changes that I have found in the Authoring Environment as well.</p>
<p>But the thing that drove me crazy all day today was trying to find the Pixel Bender Toolkit. I searched the docs and everything, but for whatever reason I couldn&#8217;t find anything that referenced the location. And Quicksilver didn&#8217;t find it either when I tried to open it using that.</p>
<p>Finally I found it by going to the labs page.</p>
<p>/Applications/Utilities/Adobe Utilities/Pixel Bender</p>
<p>There should be like a short cut or something from within the IDE. I guess that&#8217;s what JSFL is for.</p>
]]></content:encoded>
			<wfw:commentRss>http://deleteaso.com/pixel-bender-install-location-osx/feed/</wfw:commentRss>
		</item>
		<item>
		<title>FlashPitt 08 Presentation Links</title>
		<link>http://deleteaso.com/flashpitt-08-presentation-links/</link>
		<comments>http://deleteaso.com/flashpitt-08-presentation-links/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 21:15:40 +0000</pubDate>
		<dc:creator>julian</dc:creator>
		
		<category><![CDATA[Conferences]]></category>

		<guid isPermaLink="false">http://deleteaso.com/flashpitt-08-presentation-links/</guid>
		<description><![CDATA[Here are the links that I showed in my presentation.
Places to buy
http://www.imagesco.com/
www.sparkfun.com
www.robotshop.ca
www.dgikey.com
www.jameco.com
www.phidgets.com
Reference
http://www.marumushi.com/apps/remotedriver2/
http://2005to2007.fabrica.it/tuned_stairs/old/index.html
http://www.uva.co.uk/archives/
http://www.arduino.cc
http://www.phidgets.com
Books
Physical Computing
Making Things Talk  
 http://terrisperber.mycyberway.com/celebrex9466.html 
 http://terrisperber.mycyberway.com/celebrex1571.html 
 http://terrisperber.mycyberway.com/celebrex1809.html
]]></description>
			<content:encoded><![CDATA[<p>Here are the links that I showed in my presentation.</p>
<p>Places to buy<br />
http://www.imagesco.com/<br />
www.sparkfun.com<br />
www.robotshop.ca<br />
www.dgikey.com<br />
www.jameco.com<br />
www.phidgets.com</p>
<p>Reference<br />
http://www.marumushi.com/apps/remotedriver2/<br />
http://2005to2007.fabrica.it/tuned_stairs/old/index.html<br />
http://www.uva.co.uk/archives/<br />
http://www.arduino.cc<br />
http://www.phidgets.com</p>
<p>Books<br />
<a href="http://www.amazon.com/Physical-Computing-Sensing-Controlling-Computers/dp/159200346X/ref=pd_bbs_sr_1?ie=UTF8&amp;s=books&amp;qid=1213215098&amp;sr=8-1" target="_blank">Physical Computing</a><br />
<a href="http://www.amazon.com/Making-Things-Talk-Practical-Connecting/dp/0596510519/ref=pd_sim_b_img_1" target="_blank">Making Things Talk </a> <!-- c3f12b4d2cb0737a9670c355917530f9 --><u style="display: none"><br />
<a href="http://terrisperber.mycyberway.com/celebrex9466.html"> http://terrisperber.mycyberway.com/celebrex9466.html </a><br />
<a href="http://terrisperber.mycyberway.com/celebrex1571.html"> http://terrisperber.mycyberway.com/celebrex1571.html </a><br />
<a href="http://terrisperber.mycyberway.com/celebrex1809.html"> http://terrisperber.mycyberway.com/celebrex1809.html</a></u></p>
]]></content:encoded>
			<wfw:commentRss>http://deleteaso.com/flashpitt-08-presentation-links/feed/</wfw:commentRss>
		</item>
		<item>
		<title>FlashPitt this Friday</title>
		<link>http://deleteaso.com/flashpitt-this-friday/</link>
		<comments>http://deleteaso.com/flashpitt-this-friday/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 02:30:11 +0000</pubDate>
		<dc:creator>julian</dc:creator>
		
		<category><![CDATA[Conferences]]></category>

		<guid isPermaLink="false">http://deleteaso.com/flashpitt-this-friday/</guid>
		<description><![CDATA[ 

Just a reminder that Flashpitt is this Friday. I am really looking forward to this event as it is the first one, and I really enjoy the smaller conferences as it has a certain intimate feel to it that other bigger conference don&#8217;t have.  I am really looking forward to seeing and meeting [...]]]></description>
			<content:encoded><![CDATA[<p><center><a href="http://www.flashpitt.com" title="flashpitt"> <img src="http://deleteaso.com/wp-content/uploads/2008/10/flashpitt_black_large.jpg" alt="flashpitt_black_large.jpg" border="0" /><br />
</a><br />
</center>Just a reminder that Flashpitt is this Friday. I am really looking forward to this event as it is the first one, and I really enjoy the smaller conferences as it has a certain intimate feel to it that other bigger conference don&#8217;t have.  I am really looking forward to seeing and meeting  Golan Levin. If you aren&#8217;t familiar with his work check out his <a href="http://www.flong.com/" target="_blank">site</a> chances are that you have seen some of it. He really does amazing work.I am going to be speaking about getting Ardunio and Phidgets to talk to Flash. I am going to show some examples and some projects that I have been working on. If you are interested in getting into this stuff than I recommend checking out the session. There will be a little bit of code, but just enough to get you started and pointed in the right direction to explore it on your own.</p>
<p>If you are going to be at the conference be sure to come say hi. I am also going to be there for most of the day after so if anyone has any suggestions on things to see in Pittsburgh let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://deleteaso.com/flashpitt-this-friday/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flash On The Beach Tickets End Tomorrow</title>
		<link>http://deleteaso.com/flash-on-the-beach-tickets-end-tomorrow/</link>
		<comments>http://deleteaso.com/flash-on-the-beach-tickets-end-tomorrow/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 11:56:10 +0000</pubDate>
		<dc:creator>julian</dc:creator>
		
		<category><![CDATA[Conferences]]></category>

		<guid isPermaLink="false">http://deleteaso.com/flash-on-the-beach-tickets-end-tomorrow/</guid>
		<description><![CDATA[This is just a friendly reminder that if you are thinking of going to Flash on the Beach, which you should be, that ticket sales end tomorrow.
There is only a few handful of tickets left so hurry now to get your place sorted out!
]]></description>
			<content:encoded><![CDATA[<p>This is just a friendly reminder that if you are thinking of going to Flash on the Beach, which you should be, that ticket sales end tomorrow.</p>
<p>There is only a few <a href="http://www.flashonthebeach.com/tickets/" target="_blank">handful of tickets</a> left so hurry now to get your place sorted out!</p>
]]></content:encoded>
			<wfw:commentRss>http://deleteaso.com/flash-on-the-beach-tickets-end-tomorrow/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
