<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2" -->
<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/"
	>

<channel>
	<title>rockabit</title>
	<link>http://www.rockabit.com</link>
	<description>personal blog and portfolio website</description>
	<pubDate>Tue, 06 May 2008 08:42:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>
	<language>en</language>
			<item>
		<title>Just another Mario theme</title>
		<link>http://www.rockabit.com/2008/05/06/just-another-mario-theme/</link>
		<comments>http://www.rockabit.com/2008/05/06/just-another-mario-theme/#comments</comments>
		<pubDate>Tue, 06 May 2008 08:42:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.rockabit.com/2008/05/06/just-another-mario-theme/</guid>
		<description><![CDATA[As a big Mario fan, you know I gotta love this. Brilliant!  



]]></description>
			<content:encoded><![CDATA[<p>As a big Mario fan, you know I gotta love this. Brilliant! <img src='http://www.rockabit.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/ed4CHkN-Dkw&#038;hl=en&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/ed4CHkN-Dkw&#038;hl=en&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rockabit.com/2008/05/06/just-another-mario-theme/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Saving QuickTime movies</title>
		<link>http://www.rockabit.com/2008/04/24/saving-quicktime-movies/</link>
		<comments>http://www.rockabit.com/2008/04/24/saving-quicktime-movies/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 08:09:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Various]]></category>

		<guid isPermaLink="false">http://www.rockabit.com/2008/04/24/saving-quicktime-movies/</guid>
		<description><![CDATA[Remember when you saw that cool QuickTime movie on the web, but couldn&#8217;t save it because you didn&#8217;t have QuickTime Pro installed?
Well, I found a post by Electric Monk explaining how to easily get around this problem:
1. Open the file in your stand alone QuickTime player, not in your browser
2. Do a ctrl-click on the [...]]]></description>
			<content:encoded><![CDATA[<p>Remember when you saw that cool QuickTime movie on the web, but couldn&#8217;t save it because you didn&#8217;t have QuickTime Pro installed?<br />
Well, I found a post by Electric Monk explaining how to easily get around this problem:</p>
<p>1. Open the file in your stand alone QuickTime player, not in your browser<br />
2. Do a ctrl-click on the first or last frame of the movie (you might lose that frame)<br />
3. Close the window<br />
4. Confirm that you want to save the changes you&#8217;ve made<br />
5. Specify where to save the file</p>
<p>I couldn&#8217;t believe it would be that simple, but it is! No need to buy Pro, you can now save any QuickTime movie through the regular player! Thanks, Electric Monk!</p>
<p>Original post:<br />
<a href="http://www.macosxhints.com/article.php?story=20050430173712176" target="_blank">http://www.macosxhints.com/article.php?story=20050430173712176</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rockabit.com/2008/04/24/saving-quicktime-movies/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ComboBox text formatting in AS3</title>
		<link>http://www.rockabit.com/2008/04/15/combobox-text-formatting-in-as3/</link>
		<comments>http://www.rockabit.com/2008/04/15/combobox-text-formatting-in-as3/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 08:49:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.rockabit.com/2008/04/15/combobox-text-formatting-in-as3/</guid>
		<description><![CDATA[After struggling with it for a while, I&#8217;ve finally found the way to set embedFonts and a specific textFormat for all text in a Flash CS3 ComboBox component.
First of all, it is wise to create a subclass of fl.controls.ComboBox to represent your custom comboBox. In this class you can then set some styles in the [...]]]></description>
			<content:encoded><![CDATA[<p>After struggling with it for a while, I&#8217;ve finally found the way to set embedFonts and a specific textFormat for all text in a Flash CS3 ComboBox component.</p>
<p>First of all, it is wise to create a subclass of fl.controls.ComboBox to represent your custom comboBox. In this class you can then set some styles in the constructor as follows:</p>
<blockquote><p>    package com.rockabit.utils.as3<br />
{<br />
import fl.controls.ComboBox;<br />
import fl.controls.List;</p>
<p>import flash.text.TextFormat;</p>
<p>/**<br />
*    Customized ComboBox component. Graphic changes have been made inside the component itself,<br />
*    in the library, changes in textual display are made here.<br />
*/<br />
public class CustomComboBox extends ComboBox<br />
{<br />
private var textFormat:TextFormat;</p>
<p>public function CustomComboBox()<br />
{<br />
super();</p>
<p>textFormat = new TextFormat(&#8221;Arial&#8221;, 10, 0xffffff);</p>
<p>//textField is the top text, in the closed combobox<br />
textField.setStyle(&#8221;embedFonts&#8221;, true);<br />
textField.setStyle(&#8221;textFormat&#8221;, textFormat);</p>
<p>//dropdown is the list that shows when you open the combobox<br />
dropdown.setStyle(&#8221;cellRenderer&#8221;, CustomCellRenderer);<br />
}</p>
<p>override protected function drawLayout():void<br />
{<br />
super.drawLayout();<br />
textField.y = 0;<br />
}<br />
}<br />
}</p></blockquote>
<p>So in the constructor, I create a TextFormat instance and assign that to the textField variable. I then set the cellRenderer style of the dropdown list, which is a class that describes how each item in the list is formatted. For that I use another custom class, which extends fl.controls.listClasses.CellRenderer:</p>
<blockquote><p>    package com.rockabit.utils.as3<br />
{<br />
import fl.controls.listClasses.CellRenderer;</p>
<p>import flash.text.TextFormat;</p>
<p>/**<br />
*    Custom cellRenderer for comboBox list items.<br />
*/<br />
public class CustomCellRenderer extends CellRenderer<br />
{</p>
<p>public function CustomCellRenderer()<br />
{<br />
super();<br />
this.setStyle(&#8221;embedFonts&#8221;, true);<br />
this.setStyle(&#8221;textFormat&#8221;, new TextFormat(&#8221;Arial&#8221;, 10, 0&#215;000000));<br />
}</p>
<p>}</p>
<p>}</p></blockquote>
<p>All this class does is extend the default CellRenderer class and set some styles in the constructor.</p>
<p>Using these two simple classes, you can easily make sure that all your fonts are embedded in the comboBox component, and give them custom text formatting.</p>
<p>I&#8217;ve made a small example .fla file. You&#8217;ll notice that I added the Tahoma font to the library with a linkage class, which I instantiate in the TextFormat constructor parameter to get the correct fontName. Because I set the library font to bitmap text andset embedFonts to true in code, you get a nice crisp font display in your combobox.</p>
<p>Edit: I have now also added functionality to the CustomComboBox class to set vertical positioning of the main textfield. Right now this is hardcoded, but that could be changed to listen to a custom style.</p>
<p>Download source:<br />
<a href="http://www.rockabit.com/downloads/as3/combobox_example.zip" target="_blank">http://www.rockabit.com/downloads/as3/combobox_example.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rockabit.com/2008/04/15/combobox-text-formatting-in-as3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Happyard is Japanese GameJam nominee!</title>
		<link>http://www.rockabit.com/2008/03/27/happyard-is-japanese-gamejam-nominee/</link>
		<comments>http://www.rockabit.com/2008/03/27/happyard-is-japanese-gamejam-nominee/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 18:30:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[game design]]></category>

		<guid isPermaLink="false">http://www.rockabit.com/2008/03/27/happyard-is-japanese-gamejam-nominee/</guid>
		<description><![CDATA[A couple of weeks ago four other guys and me developed a concept for a Japanese mobile game called Happyard. We did this in the context of the GameJam competition which was organized with the intent of promoting dutch design in Japan through mobile gaming.
The Japan Times describes Happyard very much to the point as [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of weeks ago four other guys and me developed a concept for a Japanese mobile game called <a href="http://www.happyard.jp" target="_blank">Happyard</a>. We did this in the context of the GameJam competition which was organized with the intent of promoting dutch design in Japan through mobile gaming.</p>
<p>The Japan Times describes <a href="http://www.happyard.jp" target="_blank">Happyard </a>very much to the point as a game that &#8220;<span class="lingo_region">(&#8230;) integrates real world parameters with a virtual garden environment and sets the player about hunting animals for their collection.&#8221; This concepts enthused the Japanese jury so much that they decided on us as the fourth competitor where a selection of just three was allowed (!) So on to the demo creation phase and perhaps this fall we&#8217;ll be representing dutch design in Tokyo!</span></p>
<p>Read more at:</p>
<p><a href="http://search.japantimes.co.jp/cgi-bin/nc20080319a1.html" target="_blank">http://search.japantimes.co.jp/cgi-bin/nc20080319a1.html</a><br />
<a href="http://www.nieuwsbank.nl/inp/2008/03/18/G016.htm" target="_blank">http://www.nieuwsbank.nl/inp/2008/03/18/G016.htm</a><br />
<a href="http://www.florusvanbeek.nl/blog" target="_blank"> http://www.florusvanbeek.nl/blog</a><br />
<a href="http://blog.thingsdesigner.com" target="_blank">http://blog.thingsdesigner.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rockabit.com/2008/03/27/happyard-is-japanese-gamejam-nominee/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Navigatable ArrayCollection for Flex</title>
		<link>http://www.rockabit.com/2008/03/18/navigatable-arraycollection-for-flex/</link>
		<comments>http://www.rockabit.com/2008/03/18/navigatable-arraycollection-for-flex/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 17:01:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[programming]]></category>

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

		<guid isPermaLink="false">http://www.rockabit.com/2008/03/18/navigatable-arraycollection-for-flex/</guid>
		<description><![CDATA[I&#8217;ve written a NavigatableList class to provide the already handy ArrayCollection class with a simple cursor-like navigation option. You can call list.navigateTo() and provide for instance list.next or list.previous. You also specify the class to which items should belong and you can search for an item with list.findItem(property, value). And finally, you can clone it [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve written a NavigatableList class to provide the already handy ArrayCollection class with a simple cursor-like navigation option. You can call list.navigateTo() and provide for instance list.next or list.previous. You also specify the class to which items should belong and you can search for an item with list.findItem(property, value). And finally, you can clone it with list.clone().</p>
<p><a href="http://www.rockabit.com/downloads/as3/NavigatableList.as" target="_blank">Download it here</a></p>
<p><strong><em>EDIT: the clone() method didn&#8217;t work correctly for some reason. I&#8217;ve removed it for now.</em><br />
<em>EDIT: added an equals() method which compares this list to another list. You  must specify the  name of a unique property which can be used to check if two items are the same.</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rockabit.com/2008/03/18/navigatable-arraycollection-for-flex/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AS 3.0 layout manager</title>
		<link>http://www.rockabit.com/2008/02/25/as-30-layout-manager/</link>
		<comments>http://www.rockabit.com/2008/02/25/as-30-layout-manager/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 09:49:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.rockabit.com/2008/02/25/as-30-layout-manager/</guid>
		<description><![CDATA[I&#8217;ve created a custom layout manager in AS 3.0 which provides some of the automatic scaling and positioning that Flex provides.
You can register objects and specify a size to maintain relative to the stage size, alignment, padding and set a function that is called when the screen is resized.
This is a first version and it [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve created a custom layout manager in AS 3.0 which provides some of the automatic scaling and positioning that Flex provides.</p>
<p>You can register objects and specify a size to maintain relative to the stage size, alignment, padding and set a function that is called when the screen is resized.</p>
<p>This is a first version and it may (and most likely will) change in the future.</p>
<p>Download: <a href="http://www.rockabit.com/downloads/as3/LayoutManager.as" target="_blank">LayoutManager.as</a> and <a href="http://www.rockabit.com/downloads/as3/LayoutTarget.as" target="_blank">LayoutTarget.as</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rockabit.com/2008/02/25/as-30-layout-manager/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Physical Emotion Induction</title>
		<link>http://www.rockabit.com/2008/02/19/physical-emotion-induction/</link>
		<comments>http://www.rockabit.com/2008/02/19/physical-emotion-induction/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 08:38:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[science]]></category>

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

		<guid isPermaLink="false">http://www.rockabit.com/2007/12/05/physical-emotion-induction/</guid>
		<description><![CDATA[The hour of my graduation draws nigh, and in preparation I would like to share the details.
Abstract
It is well known that our emotional response is related to our bodily state, and more specifically that our bodily state can directly influence particular emotions we feel. It appears, however, that this fact has so far not had [...]]]></description>
			<content:encoded><![CDATA[<p>The hour of my graduation draws nigh, and in preparation I would like to share the details.</p>
<p>Abstract</p>
<blockquote><p>It is well known that our emotional response is related to our bodily state, and more specifically that our bodily state can directly influence particular emotions we feel. It appears, however, that this fact has so far not had a significant influence in the entertainment industry. We first review existing work on physical emotion induction. Based on this work we present several techniques to influence emotional responses through physical means in a non-cognitive manner. The basis for the different techniques is a two-factor model of emotion: Pleasure and Arousal. We selected 4 sets of movie clips that correspond to the 4 possible quadrants existing in the 2 factor model. We have implemented some of the emotion induction techniques in a physical device (interactive chair) and tested the effects on the immersiveness of the movie clips and the emotional experience of the participants.</p></blockquote>
<p>The full research paper (16 pages) can be downloaded here, as well as a shortened 8 page version:<br />
<a href="http://www.rockabit.com/downloads/PhysicalEmotionInduction_16p.pdf" target="_blank">full paper (pdf)</a><br />
<a href="http://www.rockabit.com/downloads/PhysicalEmotionInduction_8p.pdf">short paper (pdf)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rockabit.com/2008/02/19/physical-emotion-induction/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The fun don&#8217;t stop with Johnyy Lee</title>
		<link>http://www.rockabit.com/2007/12/25/the-fun-dont-stop-with-johnyy-lee/</link>
		<comments>http://www.rockabit.com/2007/12/25/the-fun-dont-stop-with-johnyy-lee/#comments</comments>
		<pubDate>Tue, 25 Dec 2007 10:01:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Nintendo]]></category>

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

		<guid isPermaLink="false">http://www.rockabit.com/2007/12/25/the-fun-dont-stop-with-johnyy-lee/</guid>
		<description><![CDATA[Another brilliant example of thinking outside of the box by Johnny Lee. This time he figured out how to do head tracking with the Wii remote to use in desktop VR applications. To find out what this means, watch his video below:



]]></description>
			<content:encoded><![CDATA[<p>Another brilliant example of thinking outside of the box by Johnny Lee. This time he figured out how to do head tracking with the Wii remote to use in desktop VR applications. To find out what this means, watch his video below:</p>
<p><object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/Jd3-eiid-Uw&#038;rel=1"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/Jd3-eiid-Uw&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rockabit.com/2007/12/25/the-fun-dont-stop-with-johnyy-lee/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Zombie Love</title>
		<link>http://www.rockabit.com/2007/12/23/zombie-love/</link>
		<comments>http://www.rockabit.com/2007/12/23/zombie-love/#comments</comments>
		<pubDate>Sun, 23 Dec 2007 19:36:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[film]]></category>

		<guid isPermaLink="false">http://www.rockabit.com/2007/12/23/zombie-love/</guid>
		<description><![CDATA[Yesterday I was treated to a viewing of the brilliant thesis film of Yfke van Berckelaer, called Zombie Love.
It&#8217;s essentially a musical about, as the title may suggest, a zombie in love. It is incredibly funny and well written and I enjoyed every second of it, including the hilarious &#8216;chilling with my girlfriend&#8217; trailer. An [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I was treated to a viewing of the brilliant thesis film of Yfke van Berckelaer, called Zombie Love.<br />
It&#8217;s essentially a musical about, as the title may suggest, a zombie in love. It is incredibly funny and well written and I enjoyed every second of it, including the hilarious &#8216;chilling with my girlfriend&#8217; trailer. An absolute must see!</p>
<p>Find more info on <a href="http://www.zombielovethemovie.com/" target="_blank">http://www.zombielovethemovie.com/</a> and please support Yfkes artistry by ordering a copy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rockabit.com/2007/12/23/zombie-love/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Multitouch displays using the Wiimote</title>
		<link>http://www.rockabit.com/2007/12/12/multitouch-displays-using-the-wiimote/</link>
		<comments>http://www.rockabit.com/2007/12/12/multitouch-displays-using-the-wiimote/#comments</comments>
		<pubDate>Wed, 12 Dec 2007 09:52:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Nintendo]]></category>

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

		<guid isPermaLink="false">http://www.rockabit.com/2007/12/12/multitouch-displays-using-the-wiimote/</guid>
		<description><![CDATA[Johnny Lee gave us a taste of his brilliance by sharing his experiments in which he uses a simple Wii remote to create a low cost multi touch display either on a surface or in thin air as you see in the movie Minority Report.
Check out his website: http://www.cs.cmu.edu/~johnny/projects/wii/






]]></description>
			<content:encoded><![CDATA[<p>Johnny Lee gave us a taste of his brilliance by sharing his experiments in which he uses a simple Wii remote to create a low cost multi touch display either on a surface or in thin air as you see in the movie Minority Report.<br />
Check out his website: <a href="http://www.cs.cmu.edu/~johnny/projects/wii/" target="_blank">http://www.cs.cmu.edu/~johnny/projects/wii/</a></p>
<p><object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/0awjPUkBXOU&#038;rel=1&#038;border=0"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/0awjPUkBXOU&#038;rel=1&#038;border=0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/5s5EvhHy7eQ&#038;rel=1&#038;border=0"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/5s5EvhHy7eQ&#038;rel=1&#038;border=0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rockabit.com/2007/12/12/multitouch-displays-using-the-wiimote/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
