<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Tysonlesliedesign&#039;s Blog</title>
	<atom:link href="http://tysonlesliedesign.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tysonlesliedesign.wordpress.com</link>
	<description>thoughts on all things design</description>
	<lastBuildDate>Thu, 14 Apr 2011 17:18:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='tysonlesliedesign.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/5cf5b12da37a7e8639970863bf13ba47?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Tysonlesliedesign&#039;s Blog</title>
		<link>http://tysonlesliedesign.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://tysonlesliedesign.wordpress.com/osd.xml" title="Tysonlesliedesign&#039;s Blog" />
	<atom:link rel='hub' href='http://tysonlesliedesign.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Animation and Objective C</title>
		<link>http://tysonlesliedesign.wordpress.com/2011/04/14/animation-and-objective-c/</link>
		<comments>http://tysonlesliedesign.wordpress.com/2011/04/14/animation-and-objective-c/#comments</comments>
		<pubDate>Thu, 14 Apr 2011 17:18:51 +0000</pubDate>
		<dc:creator>tlDesign</dc:creator>
				<category><![CDATA[Education and Gaming]]></category>
		<category><![CDATA[Interactive Multimedia]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://tysonlesliedesign.wordpress.com/?p=97</guid>
		<description><![CDATA[I&#8217;ve been playing around with some more advanced animation tools but wanted to go over the basics of how to animate objects. First and foremost, you have to stop thinking about animation as a traditionally called function in that there are no {} or () notating where the animation starts. It&#8217;s simplified to the point <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=97&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been playing around with some more advanced animation tools but wanted to go over the basics of how to animate objects.</p>
<p>First and foremost, you have to stop thinking about animation as a traditionally called function in that there are no {} or () notating where the animation starts. It&#8217;s simplified to the point where I wasn&#8217;t sure I was doing it right until I built my code and it worked!</p>
<p>Essentially you need to tell your code you&#8217;re about to animate with &#8220;[UIView beginAnimations:nil context:nil];&#8221;. You should also set up time parameters and how you want the animation to happen. Then, you simply say where you want your object to animate to (in my case a UIImageView containing a tennis ball). You can animate alpha, position, size, and &#8211; getting more advanced &#8211; you can animate openGL objects in 3D planes. After all this is done you tell your code to animate with &#8220;[UIView commitAnimations];&#8221;.</p>
<p>Here&#8217;s the basic code that I&#8217;m firing every time the user clicks a button that I&#8217;ve assigned this action to:</p>
<blockquote><p>-(IBAction)moveBall:(id)sender{<br />
if(ballUp){<br />
NSLog(@&#8221;ball is up&#8221;);<br />
//animate the ball down</p>
<p>[UIView beginAnimations:nil context:nil];<br />
[UIView setAnimationDuration:0.5];<br />
[UIView setAnimationCurve: UIViewAnimationCurveEaseOut];</p>
<p>CGRect offScreenFrame = theBall.frame;<br />
offScreenFrame.origin.y = 20;<br />
theBall.frame = offScreenFrame;</p>
<p>[UIView commitAnimations];</p>
<p>ballUp = NO;<br />
}else{<br />
NSLog(@&#8221;ball is down&#8221;);<br />
//animate the ball up</p>
<p>[UIView beginAnimations:nil context:nil];<br />
[UIView setAnimationDuration:0.5];<br />
[UIView setAnimationCurve: UIViewAnimationCurveEaseOut];</p>
<p>CGRect offScreenFrame = theBall.frame;<br />
offScreenFrame.origin.y = 680;<br />
theBall.frame = offScreenFrame;</p>
<p>[UIView commitAnimations];</p>
<p>ballUp = YES;<br />
}<br />
}</p></blockquote>
<span style="text-align:center; display: block;"><a href="http://tysonlesliedesign.wordpress.com/2011/04/14/animation-and-objective-c/"><img src="http://img.youtube.com/vi/fTqtS2tBRpM/2.jpg" alt="" /></a></span>
<p>&nbsp;</p>
<p>If you&#8217;re having trouble watching the video, click <a title="Tennis Ball Animation" href="http://www.youtube.com/watch?v=fTqtS2tBRpM" target="_blank">here</a>!</p>
<p>&nbsp;</p>
<p>Download the zip file with all the code <a title="xCode Example Files" href="http://www.tysonlesliedesign.com/experiments/AnimationExample.zip">here</a>.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Questions, comments, etc&#8230; Let me know!</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tysonlesliedesign.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tysonlesliedesign.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tysonlesliedesign.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tysonlesliedesign.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tysonlesliedesign.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tysonlesliedesign.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tysonlesliedesign.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tysonlesliedesign.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tysonlesliedesign.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tysonlesliedesign.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tysonlesliedesign.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tysonlesliedesign.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tysonlesliedesign.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tysonlesliedesign.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=97&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tysonlesliedesign.wordpress.com/2011/04/14/animation-and-objective-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1060089e16cc75c8118657ffa4a4119c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tysonlesliedesign</media:title>
		</media:content>
	</item>
		<item>
		<title>Flash SDK and Android Awesomeness</title>
		<link>http://tysonlesliedesign.wordpress.com/2011/02/16/flash-sdk-and-android-awesomeness/</link>
		<comments>http://tysonlesliedesign.wordpress.com/2011/02/16/flash-sdk-and-android-awesomeness/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 06:20:17 +0000</pubDate>
		<dc:creator>tlDesign</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Flash SDK]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Interactive Multimedia]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://tysonlesliedesign.wordpress.com/?p=90</guid>
		<description><![CDATA[To follow suit with my previous post I&#8217;ve now managed to put Flash Action Script 3 on the Android!!! Comparing the Android experience to the iPhone: The Android device and emulator are much &#8211; MUCH &#8211; slower than the iPhone when running AS3 If you&#8217;re using a Mac or PC, in order to get AS3 <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=90&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To follow suit with my previous post I&#8217;ve now managed to put Flash Action Script 3 on the Android!!!</p>
<p>Comparing the Android experience to the iPhone:</p>
<ul>
<li>The Android device and emulator are much &#8211; MUCH &#8211; slower than the iPhone when running AS3</li>
<li>If you&#8217;re using a Mac or PC, in order to get AS3 on an Android device you actually have to use terminal or command prompt; last I checked I&#8217;m not programming with Angelina Jolie, this isn&#8217;t 1995, and (if you haven&#8217;t caught the reference yet) this isn&#8217;t the movie &#8220;<a title="Hackers the Movie" href="http://www.imdb.com/title/tt0113243/">Hackers</a>&#8220;</li>
<li>Permissions are MUCH easier on the Android!!!! No provisioning portal, no UDID, nothing. Just make a BS certificate.p12 file and BAM! you&#8217;re on the Android</li>
<li>On Android you actually have to load flash onto the device&#8230;. AS3 on iPhone simply compiles to a format similar to the native iPhone language (Objective-C)</li>
</ul>
<p>So&#8230; It&#8217;s not actually that awesome. In fact, from what I&#8217;ve seen, Actions Script 3 on an android device runs only slightly faster than I&#8217;m sure it would on a PC from 10 years ago.</p>
<p>But alas, here is the wicked awesome app I built for it anyway!&#8230;. Presenting: Comic!</p>
<p><a href="http://tysonlesliedesign.files.wordpress.com/2011/02/screen-shots.jpg"><img class="aligncenter size-full wp-image-91" title="Comic Screen Shots" src="http://tysonlesliedesign.files.wordpress.com/2011/02/screen-shots.jpg?w=510&#038;h=245" alt="" width="510" height="245" /></a></p>
<p>Comic accesses the accelerometer in the Android device to see when you try to punch someone (or something). It then creates a cool Batman-style onomatopoeia that makes your fist more animated. As seen below: KAPLOW!!!!</p>
<p><a href="http://tysonlesliedesign.files.wordpress.com/2011/02/comic-app-in-action.jpg"><img class="aligncenter size-full wp-image-92" title="Comic App In Action" src="http://tysonlesliedesign.files.wordpress.com/2011/02/comic-app-in-action.jpg?w=510&#038;h=380" alt="" width="510" height="380" /></a></p>
<p>There were many trials and tribulations to getting this App on the Android device: compatibility with older version, emulator problems, accelerometer access, to name a few.</p>
<p>If you&#8217;re planning to build your own Flash SDK for Android app check out these blogs and videos I found extremely useful! (Keep in mind, these are generally for Mac computers)</p>
<ul>
<li>Blog: <a href="http://www.actionscript.org/forums/showthread.php3?t=241683">http://www.actionscript.org/forums/showthread.php3?t=241683</a></li>
<li>gotoAndLearn() Video: <a href="http://www.gotoandlearn.com/play.php?id=123">http://www.gotoandlearn.com/play.php?id=123</a></li>
</ul>
<p>Here are links to the files I downloaded to make it all work:</p>
<ul>
<li>Android SDK: <a href="http://developer.android.com/sdk/index.html">http://developer.android.com/sdk/index.html</a></li>
<li>Adobe Flash Extension for AIR: <a href="http://developer.android.com/sdk/index.html">http://labs.adobe.com/technologies/flashpro_extensionforair/</a></li>
<li>Adobe AIR SDK: <a href="http://www.adobe.com/products/air/sdk/">http://www.adobe.com/products/air/sdk/</a></li>
</ul>
<p>A few things to note: install every option &#8211; just to be safe. In Flash, set your app to emulator (even if it&#8217;s going on a device) and always point to the emulator Runtime.apk. When using the Android emulator make sure it&#8217;s 2.2, NOT 2.3; this simply wont work. Any other issues? Comment bellow. Otherwise good luck!!!</p>
<p>** Good advice: just create the app in java &#8211; it&#8217;s Android native, will run quicker, and most likely is easier to install and test. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Cheers!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tysonlesliedesign.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tysonlesliedesign.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tysonlesliedesign.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tysonlesliedesign.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tysonlesliedesign.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tysonlesliedesign.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tysonlesliedesign.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tysonlesliedesign.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tysonlesliedesign.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tysonlesliedesign.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tysonlesliedesign.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tysonlesliedesign.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tysonlesliedesign.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tysonlesliedesign.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=90&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tysonlesliedesign.wordpress.com/2011/02/16/flash-sdk-and-android-awesomeness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1060089e16cc75c8118657ffa4a4119c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tysonlesliedesign</media:title>
		</media:content>

		<media:content url="http://tysonlesliedesign.files.wordpress.com/2011/02/screen-shots.jpg" medium="image">
			<media:title type="html">Comic Screen Shots</media:title>
		</media:content>

		<media:content url="http://tysonlesliedesign.files.wordpress.com/2011/02/comic-app-in-action.jpg" medium="image">
			<media:title type="html">Comic App In Action</media:title>
		</media:content>
	</item>
		<item>
		<title>Flash Packager on the iPhone</title>
		<link>http://tysonlesliedesign.wordpress.com/2011/02/01/flash-packager-on-the-iphone/</link>
		<comments>http://tysonlesliedesign.wordpress.com/2011/02/01/flash-packager-on-the-iphone/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 18:50:19 +0000</pubDate>
		<dc:creator>tlDesign</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Interactive Multimedia]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://tysonlesliedesign.wordpress.com/?p=87</guid>
		<description><![CDATA[It&#8217;s slow, it&#8217;s Beta, but it&#8217;s still pretty cool. &#160; A bit of a background on the flash iPhone packager. Flash can now compile so it can be used on the iPhone. There are A LOT of issues to do with processing and RAM and&#8230; Well, a lot. Basic apps work extremely well! Angry Birds <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=87&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s slow, it&#8217;s Beta, but it&#8217;s still pretty cool.</p>
<p>&nbsp;</p>
<p>A bit of a background on the flash iPhone packager. Flash can now compile so it can be used on the iPhone. There are A LOT of issues to do with processing and RAM and&#8230; Well, a lot. Basic apps work extremely well! Angry Birds made in flash would likely crash before the loading screen finished.</p>
<p>At Sheridan we have a class wide provisioning portal on the Apple Dev Center (<a title="Apple Dev Center" href="http://developer.apple.com/">http://developer.apple.com/</a>). We&#8217;ve put our own apple device UDID (device specific ID) on the portal so we can test on an actual Apple Device. Cool! So now I&#8217;ve created my first flash packager iPhone app that goes on my iPhone 4!!! (not to be confused with my marble game which I was able to load onto an actual Apple Developers phone, thanks Justin &#8211; <a title="Justin Howlett" href="http://www.justinhowlett.com/site.html">Justin&#8217;s website here</a> and his <a title="Justin Howlett Blog" href="http://justinhowlett.wordpress.com/">blog here</a>)</p>
<p>&nbsp;</p>
<p>I always find myself sitting around, iPhone in hand, simply spinning it around with my thumb and forefinger. When I&#8217;m bored I probably do this as often as Angry Birds. So why not create a game out of it??</p>
<p>INTRODUCING&#8230;&#8230;&#8230;&#8230;. SPINNY!!!</p>
<p>&nbsp;</p>
<p><a href="http://tysonlesliedesign.files.wordpress.com/2011/02/spinny-app.png"><img class="aligncenter size-full wp-image-88" title="Spinny Beta" src="http://tysonlesliedesign.files.wordpress.com/2011/02/spinny-app.png?w=510&#038;h=267" alt="Spinny! iPhone App Beta" width="510" height="267" /></a></p>
<p>Spinny is quite simple. Grab your phone, press down on the bottom button, spin your phone, and press the other button. Woooo!!! You have to hold your finger on the button the whole time or you get an &#8220;OUCH!&#8221; and have to redo your last spin.</p>
<p>I love this concept because it brings you outside of the device while you place. It externalizes the game, bringing it into the physical world. Other inspiration for this app came from my prof at Sheridan, <a title="Dan Zen Website" href="http://www.danzen.com/tree.html">Dan Zen</a>. His iPhone app <a title="Touchy App" href="http://itunes.apple.com/us/app/touchy/id363872647?mt=8">Touchy</a> externalizes the game and gets people involved in a game of techno-keep-away.</p>
<p>Apps which bring users out to the real world are becoming more and more popular. Being able to use your device in physical space and with other devices &#8211; in my opinion &#8211; is the next wave of app. With theories of NFC (Near Field Communication) technology coming to the iPhone 5/iPad2 (<a title="NFC iPhone 5 etc" href="http://www.tuaw.com/2011/01/25/ipad-2-iphone-5-could-use-nfc-for-mobile-payments/">blog example here</a>), we could experience some really cool changes in app development!! Exciting times indeed.</p>
<p>&nbsp;</p>
<p>I&#8217;m hoping to have a more creative/involved application of Spinny in the near future. Any thoughts on how it might be played? Let me know!!</p>
<p>&nbsp;</p>
<p>Cheers!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tysonlesliedesign.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tysonlesliedesign.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tysonlesliedesign.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tysonlesliedesign.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tysonlesliedesign.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tysonlesliedesign.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tysonlesliedesign.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tysonlesliedesign.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tysonlesliedesign.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tysonlesliedesign.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tysonlesliedesign.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tysonlesliedesign.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tysonlesliedesign.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tysonlesliedesign.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=87&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tysonlesliedesign.wordpress.com/2011/02/01/flash-packager-on-the-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1060089e16cc75c8118657ffa4a4119c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tysonlesliedesign</media:title>
		</media:content>

		<media:content url="http://tysonlesliedesign.files.wordpress.com/2011/02/spinny-app.png" medium="image">
			<media:title type="html">Spinny Beta</media:title>
		</media:content>
	</item>
		<item>
		<title>Multi-User Robyn VS Robin!!!</title>
		<link>http://tysonlesliedesign.wordpress.com/2010/12/07/multi-user-robyn-vs-robin/</link>
		<comments>http://tysonlesliedesign.wordpress.com/2010/12/07/multi-user-robyn-vs-robin/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 05:44:54 +0000</pubDate>
		<dc:creator>tlDesign</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Interactive Multimedia]]></category>
		<category><![CDATA[Multi-User]]></category>

		<guid isPermaLink="false">http://tysonlesliedesign.wordpress.com/?p=80</guid>
		<description><![CDATA[So once again I&#8217;ve been challenged to work with some new and innovative technology in flash. I should start with the back story; about 20 years ago &#8211; immediately after the internet was first invented &#8211; Dan Zen created Robin: a multi-user application in flash; some say the first of its kind. It&#8217;s a pretty <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=80&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So once again I&#8217;ve been challenged to work with some new and innovative technology in flash.</p>
<p>I should start with the back story; about 20 years ago &#8211; immediately after the internet was first invented &#8211; Dan Zen created Robin: a multi-user application in flash; some say the first of its kind. It&#8217;s a pretty simple program to use and is downloadable at <a title="Robin Multi-User" href="http://robinflash.wordpress.com/">this link</a>.</p>
<p>How it works is explained fairly simply on the Robin website. The .html file used on each computer is almost entirely self-sufficient; taking mutual co-ordinates and placing them in arrays which can be accessed on each computer using the same .html file. Having access to these different variables gives the user the ability to exchange almost any piece of information.</p>
<p>So how I came up with the idea for my game&#8230; one of the students in our class is named Robyn. She&#8217;s been having a rough time with everyone calling out her name during class and thought it would be cool to create a game in which she fights Robin (the program)&#8230;</p>
<p>And here it is!!</p>
<p><a href="http://tysonlesliedesign.files.wordpress.com/2010/12/image01.jpg"><img class="aligncenter size-full wp-image-81" title="RobynVsRobin" src="http://tysonlesliedesign.files.wordpress.com/2010/12/image01.jpg?w=510&#038;h=383" alt="Robyn Vs Robin" width="510" height="383" /></a></p>
<p>Take out all your hatred for Robin if you share a similar name with it!!!</p>
<p><a href="http://tysonlesliedesign.files.wordpress.com/2010/12/image02.jpg"><img class="aligncenter size-full wp-image-82" title="Robyn Hitting Robin" src="http://tysonlesliedesign.files.wordpress.com/2010/12/image02.jpg?w=510&#038;h=383" alt="Robyn Hitting Robin!!!" width="510" height="383" /></a></p>
<p>Or, if you&#8217;ve gone your whole life sharing a common name with someone else, imagine that it&#8217;s you VS that person!!! Hours of fun rolled into one game!</p>
<p><a href="http://tysonlesliedesign.files.wordpress.com/2010/12/image03.jpg"><img class="aligncenter size-full wp-image-83" title="Robin Hitting Robyn" src="http://tysonlesliedesign.files.wordpress.com/2010/12/image03.jpg?w=510&#038;h=383" alt="Robin Hitting Robyn!!!" width="510" height="383" /></a></p>
<p>The score works based on your speed relative to the other users speed. If your icon is moving faster than theirs when you hit them, you get the points AND it flashes a Batman style sound like Pow! or Bam!! Amazing!</p>
<p>Some cool flash games that have used or continue to use multi-user code in flash are <a title="Dinky Bomb" href="http://www.spikything.com/dinkybomb/">Dinky Bomb</a> in which users try to kill one-another in a cartoon turn based aim-and-shoot.</p>
<blockquote><p>&#8220;<span style="font-family:Arial,sans-serif;font-size:x-small;"><span style="font-family:Arial,Helvetica,sans-serif;font-size:x-small;">Dinky Bomb Original was an online multiplayer <a href="http://get.adobe.com/flashplayer" target="_blank">Flash</a> game, built for the         converged service <a href="http://http//en.wikipedia.org/wiki/Gamer.tv" target="_blank">Gamer.tv</a> many years ago. It was one of the first         real-time multiuser experiences on the web in Flash technology  (originally Flash 5, connecting to a Java socket server backend with  Flash&#8217;s then new XMLSocket capability)&#8221;</span></span></p></blockquote>
<p>One multi-user game which stands out from the rest (but isn&#8217;t flash based) is Call of Duty (COD). One of the most popular multiplayer games on any platform, COD stands out from the rest. It can hold thousands of users at a time and only crashes once every &#8211; oh &#8211; every thirty seconds.<a href="http://blogmyway.org/videos/wp-content/uploads/2010/11/Call-of-Duty-Black-Ops-10-reasons-why-Black-Ops-is-Awesome-BO-GameplayCountdown.jpg"></a></p>
<p><img class="aligncenter" title="cod-black-ops-multi-int2-1283543201.jpg" src="http://nerdreactor.com/wp-content/uploads/2010/10/cod-black-ops-multi-int2-1283543201.jpg" alt="COD Black Ops" width="599" height="337" /></p>
<p>I&#8217;ve just started working on another multi-user game that will hopefully be able to work on two iPhones/iPads/iPod Touch&#8217;s when it&#8217;s finished. It&#8217;s still in the works but I&#8217;m pretty sure I&#8217;ll be calling it &#8220;TIP-OFF!&#8221;. Just a teaser until I have something more concrete to show!</p>
<p>Cheers!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tysonlesliedesign.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tysonlesliedesign.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tysonlesliedesign.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tysonlesliedesign.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tysonlesliedesign.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tysonlesliedesign.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tysonlesliedesign.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tysonlesliedesign.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tysonlesliedesign.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tysonlesliedesign.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tysonlesliedesign.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tysonlesliedesign.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tysonlesliedesign.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tysonlesliedesign.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=80&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tysonlesliedesign.wordpress.com/2010/12/07/multi-user-robyn-vs-robin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1060089e16cc75c8118657ffa4a4119c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tysonlesliedesign</media:title>
		</media:content>

		<media:content url="http://tysonlesliedesign.files.wordpress.com/2010/12/image01.jpg" medium="image">
			<media:title type="html">RobynVsRobin</media:title>
		</media:content>

		<media:content url="http://tysonlesliedesign.files.wordpress.com/2010/12/image02.jpg" medium="image">
			<media:title type="html">Robyn Hitting Robin</media:title>
		</media:content>

		<media:content url="http://tysonlesliedesign.files.wordpress.com/2010/12/image03.jpg" medium="image">
			<media:title type="html">Robin Hitting Robyn</media:title>
		</media:content>

		<media:content url="http://nerdreactor.com/wp-content/uploads/2010/10/cod-black-ops-multi-int2-1283543201.jpg" medium="image">
			<media:title type="html">cod-black-ops-multi-int2-1283543201.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Dieter Rams is Design</title>
		<link>http://tysonlesliedesign.wordpress.com/2010/12/02/dieter-rams-is-design/</link>
		<comments>http://tysonlesliedesign.wordpress.com/2010/12/02/dieter-rams-is-design/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 08:51:53 +0000</pubDate>
		<dc:creator>tlDesign</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Interactive Multimedia]]></category>

		<guid isPermaLink="false">http://tysonlesliedesign.wordpress.com/?p=76</guid>
		<description><![CDATA[&#160; Simply looking for design inspiration for a new game I&#8217;m thinking of creating&#8230;. Dieter Rams to the rescue!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=76&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><span style="text-align:center; display: block;"><a href="http://tysonlesliedesign.wordpress.com/2010/12/02/dieter-rams-is-design/"><img src="http://img.youtube.com/vi/Nz8m9VMYRpM/2.jpg" alt="" /></a></span></p>
<p>&nbsp;</p>
<p>Simply looking for design inspiration for a new game I&#8217;m thinking of creating&#8230;. Dieter Rams to the rescue!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tysonlesliedesign.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tysonlesliedesign.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tysonlesliedesign.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tysonlesliedesign.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tysonlesliedesign.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tysonlesliedesign.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tysonlesliedesign.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tysonlesliedesign.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tysonlesliedesign.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tysonlesliedesign.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tysonlesliedesign.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tysonlesliedesign.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tysonlesliedesign.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tysonlesliedesign.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=76&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tysonlesliedesign.wordpress.com/2010/12/02/dieter-rams-is-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1060089e16cc75c8118657ffa4a4119c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tysonlesliedesign</media:title>
		</media:content>
	</item>
		<item>
		<title>Tilt Technology Ported onto the iPhone from Flash = MARBLES</title>
		<link>http://tysonlesliedesign.wordpress.com/2010/11/16/tilt-technology-ported-onto-the-iphone-from-flash-marbles/</link>
		<comments>http://tysonlesliedesign.wordpress.com/2010/11/16/tilt-technology-ported-onto-the-iphone-from-flash-marbles/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 06:32:19 +0000</pubDate>
		<dc:creator>tlDesign</dc:creator>
				<category><![CDATA[Interactive Multimedia]]></category>

		<guid isPermaLink="false">http://tysonlesliedesign.wordpress.com/?p=67</guid>
		<description><![CDATA[So I&#8217;ve been working on a mobile-based game which uses tilt to determine the roll of a marble. The marble rolls around a grid and collects glowing orbs which increase the marbles size.  Several cool features which make up this game: it&#8217;s written in flash AS3 yet can be ported onto the iPhone (sweet!), I <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=67&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve been working on a mobile-based game which uses tilt to determine the roll of a marble. The marble rolls around a grid and collects glowing orbs which increase the marbles size.  Several cool features which make up this game: it&#8217;s written in flash AS3 yet can be ported onto the iPhone (sweet!), I used a mask overlay to create the look of a 3-dimensional ball without actually needing to work in 3D, and it&#8217;s the first time I&#8217;ve used multidimensional arrays with hit-tests in flash.</p>
<p>The tutorial I used for porting a rolling ball onto the screen is at Republic of Code &#8211; <a href="http://www.republicofcode.com/tutorials/flash/as3accelerometer/">http://www.republicofcode.com/tutorials/flash/as3accelerometer/</a></p>
<p>The tutorial I used for making that ball into a move-able mask is at Atomic Robot Design: <a href="http://atomicrobotdesign.com/blog/uncategorized/creating-a-movable-mask-in-actionscript-3/">http://atomicrobotdesign.com/blog/uncategorized/creating-a-movable-mask-in-actionscript-3/</a></p>
<p>Here&#8217;s the intro screen to the game:</p>
<p><a href="http://tysonlesliedesign.files.wordpress.com/2010/11/marble-game-11.jpg"><img class="aligncenter size-full wp-image-69" title="Marble Game" src="http://tysonlesliedesign.files.wordpress.com/2010/11/marble-game-11.jpg?w=437&#038;h=290" alt="Marble Game Image 1" width="437" height="290" /></a></p>
<p style="text-align:center;">You roll the ball into the black hole to start a new level</p>
<p>&nbsp;</p>
<p>A quick screen shot of the marble surrounded by white orbs.</p>
<p><a href="http://tysonlesliedesign.files.wordpress.com/2010/11/marble-game-4.jpg"><img class="aligncenter size-full wp-image-71" title="Marble Game" src="http://tysonlesliedesign.files.wordpress.com/2010/11/marble-game-4.jpg?w=437&#038;h=290" alt="Marble Game Image 4" width="437" height="290" /></a></p>
<p style="text-align:center;">The Game In Action</p>
<p>&nbsp;</p>
<p>The Game Over screen shows your score and eventually re-loads the intro screen.</p>
<p><a href="http://tysonlesliedesign.files.wordpress.com/2010/11/marble-game-21.jpg"><img class="aligncenter size-full wp-image-72" title="Marble Game" src="http://tysonlesliedesign.files.wordpress.com/2010/11/marble-game-21.jpg?w=437&#038;h=290" alt="Marble Game Image 3" width="437" height="290" /></a></p>
<p style="text-align:center;">Game Over Screen</p>
<p>&nbsp;</p>
<p>So that&#8217;s the game so far! I&#8217;m hoping to add more levels, save files, physics, and gravity as soon as I can find time!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>More games and Flash and cool tech to come!</p>
<p>Cheers!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tysonlesliedesign.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tysonlesliedesign.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tysonlesliedesign.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tysonlesliedesign.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tysonlesliedesign.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tysonlesliedesign.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tysonlesliedesign.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tysonlesliedesign.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tysonlesliedesign.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tysonlesliedesign.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tysonlesliedesign.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tysonlesliedesign.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tysonlesliedesign.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tysonlesliedesign.wordpress.com/67/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=67&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tysonlesliedesign.wordpress.com/2010/11/16/tilt-technology-ported-onto-the-iphone-from-flash-marbles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1060089e16cc75c8118657ffa4a4119c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tysonlesliedesign</media:title>
		</media:content>

		<media:content url="http://tysonlesliedesign.files.wordpress.com/2010/11/marble-game-11.jpg" medium="image">
			<media:title type="html">Marble Game</media:title>
		</media:content>

		<media:content url="http://tysonlesliedesign.files.wordpress.com/2010/11/marble-game-4.jpg" medium="image">
			<media:title type="html">Marble Game</media:title>
		</media:content>

		<media:content url="http://tysonlesliedesign.files.wordpress.com/2010/11/marble-game-21.jpg" medium="image">
			<media:title type="html">Marble Game</media:title>
		</media:content>
	</item>
		<item>
		<title>Procrastination is Me</title>
		<link>http://tysonlesliedesign.wordpress.com/2010/11/08/procrastination-is-me/</link>
		<comments>http://tysonlesliedesign.wordpress.com/2010/11/08/procrastination-is-me/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 18:15:34 +0000</pubDate>
		<dc:creator>tlDesign</dc:creator>
				<category><![CDATA[TED Talks]]></category>

		<guid isPermaLink="false">http://tysonlesliedesign.wordpress.com/?p=61</guid>
		<description><![CDATA[&#160; Life has become a little hectic and posting online is getting pushed to the wayside; maybe I should stop telling people I&#8217;m going to blog and just do it!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=61&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><span style="text-align:center; display: block;"><a href="http://tysonlesliedesign.wordpress.com/2010/11/08/procrastination-is-me/"><img src="http://img.youtube.com/vi/nwfKIetcxZo/2.jpg" alt="" /></a></span></p>
<p style="text-align:center;">&nbsp;</p>
<p style="text-align:center;">Life has become a little hectic and posting online is getting pushed to the wayside; maybe I should stop telling people I&#8217;m going to blog and just do it!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tysonlesliedesign.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tysonlesliedesign.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tysonlesliedesign.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tysonlesliedesign.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tysonlesliedesign.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tysonlesliedesign.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tysonlesliedesign.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tysonlesliedesign.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tysonlesliedesign.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tysonlesliedesign.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tysonlesliedesign.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tysonlesliedesign.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tysonlesliedesign.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tysonlesliedesign.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=61&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tysonlesliedesign.wordpress.com/2010/11/08/procrastination-is-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1060089e16cc75c8118657ffa4a4119c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tysonlesliedesign</media:title>
		</media:content>
	</item>
		<item>
		<title>Self Teaching &#8211; The New Wave of Education?</title>
		<link>http://tysonlesliedesign.wordpress.com/2010/10/24/self-teaching-the-new-wave-of-education/</link>
		<comments>http://tysonlesliedesign.wordpress.com/2010/10/24/self-teaching-the-new-wave-of-education/#comments</comments>
		<pubDate>Sun, 24 Oct 2010 23:24:00 +0000</pubDate>
		<dc:creator>tlDesign</dc:creator>
				<category><![CDATA[Education and Gaming]]></category>
		<category><![CDATA[Interactive Multimedia]]></category>

		<guid isPermaLink="false">http://tysonlesliedesign.wordpress.com/?p=51</guid>
		<description><![CDATA[&#8220;Indian education scientist Sugata Mitra tackles one of the greatest problems of education &#8212; the best teachers and schools don&#8217;t exist where they&#8217;re needed most. In a series of real-life experiments from New Delhi to South Africa to Italy, he gave kids self-supervised access to the web and saw results that could revolutionize how we <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=51&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<blockquote><p>&#8220;Indian education scientist Sugata Mitra tackles one of the greatest problems of education &#8212; the best teachers and schools don&#8217;t exist where they&#8217;re needed most. In a series of real-life experiments from New Delhi to South Africa to Italy, he gave kids self-supervised access to the web and saw results that could revolutionize how we think about teaching.&#8221;</p></blockquote>
<p style="text-align:center;"><span style="text-align:center; display: block;"><a href="http://tysonlesliedesign.wordpress.com/2010/10/24/self-teaching-the-new-wave-of-education/"><img src="http://img.youtube.com/vi/dk60sYrU2RU/2.jpg" alt="" /></a></span></p>
<p>&nbsp;</p>
<p>A seriously cool idea that brings to question why Canada&#8217;s early education system still is the way it is. Smartboard&#8217;s are the new wave but we really need to immerse our students to ensure they don&#8217;t get left behind. Numbers of students with reading levels 4 or 5 grades under where they should be and an inability to multiply and divide by middle school are steadily increasing while children in countries without education systems are teaching themselves how to speak English and add.</p>
<p>Wouldn&#8217;t it be amazing if we could gear our advancing technology toward a system where children don&#8217;t need to be in school to learn, where technology brings them knowledge of the world.</p>
<p>&nbsp;</p>
<p>Just a thought.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tysonlesliedesign.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tysonlesliedesign.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tysonlesliedesign.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tysonlesliedesign.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tysonlesliedesign.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tysonlesliedesign.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tysonlesliedesign.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tysonlesliedesign.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tysonlesliedesign.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tysonlesliedesign.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tysonlesliedesign.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tysonlesliedesign.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tysonlesliedesign.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tysonlesliedesign.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=51&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tysonlesliedesign.wordpress.com/2010/10/24/self-teaching-the-new-wave-of-education/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1060089e16cc75c8118657ffa4a4119c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tysonlesliedesign</media:title>
		</media:content>
	</item>
		<item>
		<title>Life is a Game</title>
		<link>http://tysonlesliedesign.wordpress.com/2010/10/17/life-is-a-game/</link>
		<comments>http://tysonlesliedesign.wordpress.com/2010/10/17/life-is-a-game/#comments</comments>
		<pubDate>Sun, 17 Oct 2010 22:09:37 +0000</pubDate>
		<dc:creator>tlDesign</dc:creator>
				<category><![CDATA[Education and Gaming]]></category>

		<guid isPermaLink="false">http://tysonlesliedesign.wordpress.com/?p=27</guid>
		<description><![CDATA[Firstly, I swore I wouldn&#8217;t do this&#8230;. But it&#8217;s been TWO WEEKS since my last (and first) post. I&#8217;m new at blogging and I guess It&#8217;ll take a bit to ween its way into my everyday life. So&#8230; I&#8217;ve decided that &#8211; at the very least &#8211; I&#8217;ll post once a week on a subject <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=27&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Firstly, I swore I wouldn&#8217;t do this&#8230;. But it&#8217;s been TWO WEEKS since my last (and first) post. I&#8217;m new at blogging and I guess It&#8217;ll take a bit to ween its way into my everyday life.</p>
<div id="so" style="padding-top:20px;padding-bottom:20px;">So&#8230;</div>
<p>I&#8217;ve decided that &#8211; at the very least &#8211; I&#8217;ll post once a week on a subject I love &#8211; <strong>education through games</strong>.</p>
<p style="text-align:left;">Those who know me and have heard me talk about design know that I love technology which assists people subconsciously or unknowingly to learn or better their lives. My thesis, &#8220;Vision&#8221;, is real life guitar hero. I created it two years ago in an attempt to build a system of student-product interaction which makes the student WANT to learn more. The student learns by playing a game on their computer with a Bluetooth connected guitar (<a title="Tyson Leslie Design" href="http://www.tysonlesliedesign.com/industrial_vision.htm" target="_self">details after the jump</a>).</p>
<p style="text-align:center;"><a title="Tyson Leslie Design Vision Guitar" href="http://www.tysonlesliedesign.com/industrial_vision.htm" target="_self"><img class="aligncenter" title="Vision" src="http://tysonlesliedesign.files.wordpress.com/2010/10/guitar.jpg?w=300&#038;h=255" alt="Learning through gaming. Vision" width="300" height="255" /></a></p>
<p style="text-align:center;"><a title="Vision on Facebook" href="http://www.facebook.com/tysonleslie.design#!/pages/Vision-The-Self-Teaching-Electric-Guitar/350057404101" target="_self">Like Vision on Facebook!</a></p>
<p style="text-align:center;">&nbsp;</p>
<p><span style="text-align:left;">Reasons why I <span style="text-decoration:line-through;">like</span> love education through gaming:</span></p>
<p><span style="text-align:left;"> </span></p>
<ul>
<li>My family is full of teachers; my dad, sister, and older brother. I have a family full of inspiration.</li>
<li>Learning the traditional way is BORING</li>
<li>Children are coming to class with the attitude of &#8220;<em>try</em> and teach me, just <em><strong>try</strong></em>&#8220;. Then they go home and play hours upon hours of interactive, personalized, and most importantly <strong>fun </strong>video games. Why not bridge the gap??</li>
<li>Learning CAN be fun!!! I swear</li>
<li>&#8220;Status is the best motivator&#8221;, as Seth Priebatsch &#8211; the creator of SCVNGR &#8211; says in his TED Talks video about the game layer on top of the world. Children compete and challenge each other to do better. Why not utilize this in education (in a friendlier way than rubbing grades in each others face)</li>
<li>The marriage of games and education is nearly boundless. No idea works for every field of study, everything has a solution, and each one can lead to astounding results.</li>
</ul>
<p style="text-align:center;"><span style="text-align:center; display: block;"><a href="http://tysonlesliedesign.wordpress.com/2010/10/17/life-is-a-game/"><img src="http://img.youtube.com/vi/Yn9fTc_WMbo/2.jpg" alt="" /></a></span></p>
<p style="text-align:left;">Closing thoughts:<a href="http://tysonlesliedesign.files.wordpress.com/2010/10/guitar.jpg"></a></p>
<p style="text-align:left;">Really think about what you&#8217;re gaining the next time you play Call of Duty, Farmville, Angry Birds, etc. Yes, hand-eye coordination is a useful life skill, and studies have shown that people who play Call of Duty are able to make more split second decisions more quickly than people who don&#8217;t. But what if the game you were playing taught you how to be a concert pianist, a calculus wiz, or a fitness guru. The field of gaming is slowly changing and given time will become the go to source for educating our young and will erase the old boring methods of textbooks and memorization.</p>
<p style="text-align:left;">&nbsp;</p>
<p style="text-align:left;">Tell me your thoughts!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tysonlesliedesign.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tysonlesliedesign.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tysonlesliedesign.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tysonlesliedesign.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tysonlesliedesign.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tysonlesliedesign.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tysonlesliedesign.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tysonlesliedesign.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tysonlesliedesign.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tysonlesliedesign.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tysonlesliedesign.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tysonlesliedesign.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tysonlesliedesign.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tysonlesliedesign.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=27&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tysonlesliedesign.wordpress.com/2010/10/17/life-is-a-game/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1060089e16cc75c8118657ffa4a4119c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tysonlesliedesign</media:title>
		</media:content>

		<media:content url="http://tysonlesliedesign.files.wordpress.com/2010/10/guitar.jpg?w=300" medium="image">
			<media:title type="html">Vision</media:title>
		</media:content>
	</item>
		<item>
		<title>Webcams &#8211; not just for Skype anymore!</title>
		<link>http://tysonlesliedesign.wordpress.com/2010/10/05/webcams-not-just-for-skype-anymore/</link>
		<comments>http://tysonlesliedesign.wordpress.com/2010/10/05/webcams-not-just-for-skype-anymore/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 17:43:09 +0000</pubDate>
		<dc:creator>tlDesign</dc:creator>
				<category><![CDATA[Interactive Multimedia]]></category>

		<guid isPermaLink="false">http://tysonlesliedesign.wordpress.com/?p=5</guid>
		<description><![CDATA[This is my second blog ever&#8230;  My first was created under 12 hours ago in a haze and has since been abandoned. So&#8230; I&#8217;m taking Interactive Multimedia at Sheridan College. It&#8217;s a post-grad certificate program and so far it&#8217;s been pretty amazing. Our prof &#8211; Dan Zen &#8211; is absolutely crazy. He really is a <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=5&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is my second blog ever&#8230;  My first was created under 12 hours ago in a haze and has since been abandoned.</p>
<div id="so" style="padding-top:20px;padding-bottom:20px;">So&#8230;</div>
<p>I&#8217;m taking Interactive Multimedia at Sheridan College. It&#8217;s a  post-grad certificate program and so far it&#8217;s been pretty amazing.</p>
<p>Our  prof &#8211; Dan Zen &#8211; is absolutely crazy. He really is a mad scientist. He  created this program in flash called OSTRICH which actually allows you  to create cursors and anamorphic blobs which follow your movement via  webcam in just a few lines of code. Dan&#8217;s work is viewable and  download-able from <a href="http://ostrichflash.wordpress.com/">http://ostrichflash.wordpress.com/</a> it&#8217;s open source  and really cool once you get the hang of it!</p>
<p>What OSTRICH  allows you to do is create interactive webcam related games. I&#8217;ve seen a  lot of &#8220;webcam games&#8221; that simply take the image from your webcam and  stick it in a picture frame, a TV, on top of a tank that runs over  people (<a href="http://www.newgrounds.com/portal/view/431668">http://www.newgrounds.com/portal/view/431668</a>); so what? I can  put googly eyes on myself. Who cares??? I have that on my mac&#8230; It&#8217;s  called Photo Booth.</p>
<p>What&#8217;s cool about OSTRICH is it sees movement  and tracks it. By comparing each webcam frame against the last and  figuring out the difference OSTRICH actually tracks your movement!  Pretty cool, right?</p>
<p>So, Dan gave our class an assignment:  create something &#8211; ANYTHING &#8211; that uses the OSTRICH technology. The more  you adopt the code the better.</p>
<p><strong>So what did I create?</strong></p>
<p>What every bartender/college student would&#8230; A drinking game!</p>
<p style="text-align:center;"><a title="Click to view game!" href="http://www.tysonlesliedesign.com/drinking_game.htm" target="_blank"><img src="http://tldesign.ucoz.com/_bl/0/s39442702.jpg" alt="" /></a></p>
<p>I  used two cursors with separate bounding boxes for Player1 and Player2.  You use your motion to navigate your bottle into your mug. The first  player to fill their mug 5 times wins! What do you win?&#8230; Well, um,  pride?  Maybe the loser has to chug his beer while the winner gets to  bask in sober glory!</p>
<p>Let me tell you, creating this program  was not easy. Not being entirely sure how the game would be played mixed  with not being certain on how Flash actually works combined to make  quite a few frustrated nights in front of the laptop. But, after many  coffee&#8217;s, writing and re-writing lines of code, I finally came out with a  game that I&#8217;m proud of.</p>
<p>It may not be perfect but hell, 4 weeks  ago I would have looked at Action Script 3 code and said &#8220;what the f#$%  are those seagull shaped brackets, people actually use them?!&#8221;</p>
<p>So if you&#8217;re curious you can try to play my drinking game at&#8230;</p>
<p>While you&#8217;re at it check out the rest of my site! More games to come!!!</p>
<p><a href="http://www.tysonlesliedesign.com/drinking_game.htm">http://www.tysonlesliedesign.com/drinking_game.htm</a></p>
<p>More games and Flash and cool tech to come!<br />
Tyson</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tysonlesliedesign.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tysonlesliedesign.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tysonlesliedesign.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tysonlesliedesign.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tysonlesliedesign.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tysonlesliedesign.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tysonlesliedesign.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tysonlesliedesign.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tysonlesliedesign.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tysonlesliedesign.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tysonlesliedesign.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tysonlesliedesign.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tysonlesliedesign.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tysonlesliedesign.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tysonlesliedesign.wordpress.com&amp;blog=16423642&amp;post=5&amp;subd=tysonlesliedesign&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tysonlesliedesign.wordpress.com/2010/10/05/webcams-not-just-for-skype-anymore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1060089e16cc75c8118657ffa4a4119c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tysonlesliedesign</media:title>
		</media:content>

		<media:content url="http://tldesign.ucoz.com/_bl/0/s39442702.jpg" medium="image" />
	</item>
	</channel>
</rss>
