<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>formatlos &#187; Projects</title>
	<atom:link href="http://blog.formatlos.de/category/projects/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.formatlos.de</link>
	<description>Martin Rädlinger</description>
	<lastBuildDate>Thu, 29 Sep 2011 06:57:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>AS3 Circle Gradient</title>
		<link>http://blog.formatlos.de/2010/03/30/as3-circle-gradient/</link>
		<comments>http://blog.formatlos.de/2010/03/30/as3-circle-gradient/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 18:35:03 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash Player 10]]></category>
		<category><![CDATA[Pixelbender]]></category>

		<guid isPermaLink="false">http://blog.formatlos.de/?p=414</guid>
		<description><![CDATA[According to my previous post about the AS3 Circle Color Spectrum I wanted to implement the circle gradient in pixel bender as well, so there you go. You can specify up to 4 colors and control the appearance with the corresponding ratio. 

the parameters for the shader

	center for passing in the x and y
	innerRadius ...]]></description>
			<content:encoded><![CDATA[<p>According to my previous post about the <a href="http://blog.formatlos.de/2010/03/30/as3-circle-color-spectrum">AS3 Circle Color Spectrum</a> I wanted to implement the circle gradient in pixel bender as well, so there you go. You can specify up to 4 colors and control the appearance with the corresponding ratio. </p>
<p>the parameters for the shader</p>
<ul>
<li><strong>center</strong> for passing in the x and y</li>
<li><strong>innerRadius</strong> and <strong>outerRadius</strong> for controling the size of the circle</li>
<li><strong>rotation (0-360)</strong> to change the starting angle </li>
<li><strong>color1</strong>, <strong>color2</strong>, <strong>color3</strong>, <strong>color4</strong> in the format RGBA (1.0, 1.0, 1.0, 1.0 = 0xffffffff)</li>
<li><strong>ratios</strong> an array of color distribution ratio </li>
</ul>
<p>
<a href="http://play.formatlos.de/circle-gradient-filter/"><img src="http://blog.formatlos.de/wp-content/uploads/2010/03/circleGradientSamples.jpg" alt="" title="circleGradientSamples" width="550" height="187" class="alignnone size-full wp-image-426" /></a></p>
<p>
<a href="http://play.formatlos.de/circle-gradient-filter/">Play with the filter&#8230;</a><br />
<a href="http://blog.formatlos.de/wp-content/uploads/2010/03/CircleGradient_1.0.zip">Download Circle Gradient filter &#038; pixel bender source</a>
</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.formatlos.de%2F2010%2F03%2F30%2Fas3-circle-gradient%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.formatlos.de%2F2010%2F03%2F30%2Fas3-circle-gradient%2F&amp;source=formatlos&amp;style=normal&amp;hashtags=ActionScript,AS3,Flash,Flash+Player+10,Pixelbender&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.formatlos.de/2010/03/30/as3-circle-gradient/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AS3 Circle Color Spectrum</title>
		<link>http://blog.formatlos.de/2010/03/30/as3-circle-color-spectrum/</link>
		<comments>http://blog.formatlos.de/2010/03/30/as3-circle-color-spectrum/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 18:33:08 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash Player 10]]></category>
		<category><![CDATA[Pixelbender]]></category>

		<guid isPermaLink="false">http://blog.formatlos.de/?p=412</guid>
		<description><![CDATA[Just a few days ago I released my HSB Color Wheel interface. All the graphics used in there are drawn with the AS3 drawing API including the circle color spectrum and the circle gradient. This performs very well but just out of curiosity I wondered how hard it would be to generate the color ...]]></description>
			<content:encoded><![CDATA[<p>Just a few days ago I released my <a href="http://blog.formatlos.de/2010/03/27/hsb-color-wheel/">HSB Color Wheel</a> interface. All the graphics used in there are drawn with the AS3 drawing API including the circle color spectrum and the circle gradient. This performs very well but just out of curiosity I wondered how hard it would be to generate the color spectrum in pixel bender &#8230; and well it&#8217;s not that complicated, actually it&#8217;s easier than doing it in AS3 because pixel bender is made for dealing with colors and pixels. </p>
<p>I implemented a few parameter to control the shader</p>
<ul>
<li><strong>center</strong> for passing in the x and y</li>
<li><strong>innerRadius</strong> and <strong>outerRadius</strong> for controling the size of the circle</li>
<li><strong>rotation (0-360)</strong> to change the angle where the red color starts </li>
<li><strong>ratio (0.0-1.0)</strong> for controling the space used for 1 color spectrum, e.g. a value of 0.5 would use 180 degrees for displaying 1 spectrum and you would end up with 2 spectrums in your circle </li>
</ul>
<p>
<a href="http://play.formatlos.de/circle-color-spectrum-filter/"><img src="http://blog.formatlos.de/wp-content/uploads/2010/03/circleSpectrumSamples.jpg" alt="" title="circleSpectrumSamples" width="550" height="188" class="alignnone size-full wp-image-419" /></a>is it just me or does the circle in the middle seem to rotate slightly &#8230; scary &#8230; anyway</p>
<p>
<a href="http://play.formatlos.de/circle-color-spectrum-filter/">Play with the filter&#8230;</a><br />
<a href="http://blog.formatlos.de/wp-content/uploads/2010/03/CircleColorSpectrum_1.0.zip">Download Circle Color Spectrum filter &#038; pixel bender source</a>
</p>
<p><strong>next up: </strong><br />
<a href="http://blog.formatlos.de/2010/03/30/as3-circle-gradient/">AS3 Circle Gradient</a></p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.formatlos.de%2F2010%2F03%2F30%2Fas3-circle-color-spectrum%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.formatlos.de%2F2010%2F03%2F30%2Fas3-circle-color-spectrum%2F&amp;source=formatlos&amp;style=normal&amp;hashtags=ActionScript,AS3,Flash,Flash+Player+10,Pixelbender&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.formatlos.de/2010/03/30/as3-circle-color-spectrum/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>HSB Color Wheel</title>
		<link>http://blog.formatlos.de/2010/03/27/hsb-color-wheel/</link>
		<comments>http://blog.formatlos.de/2010/03/27/hsb-color-wheel/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 10:00:41 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[AS3]]></category>

		<guid isPermaLink="false">http://blog.formatlos.de/?p=401</guid>
		<description><![CDATA[I just did some interface experiments because I always wanted to have some kind of circle color picker ... the HSB Color Wheel is what I came up with. I implemented some settings to change the 	appearance slightly. I plan to release the AS3 code here if anyone is interested and as soon as ...]]></description>
			<content:encoded><![CDATA[<p>I just did some interface experiments because I always wanted to have some kind of circle color picker &#8230; the <a href="http://play.formatlos.de/hsb-color-wheel/">HSB Color Wheel</a> is what I came up with. I implemented some settings to change the 	appearance slightly. I plan to release the AS3 code here if anyone is interested and as soon as I have the time to clean it up a little bit.</p>
<h3>Source</h3>
<p>You can download the source files of the HSB Color Wheel Demo here:<br />
<a href='http://blog.formatlos.de/wp-content/uploads/2010/03/hsbcolorwheel.zip'>http://blog.formatlos.de/wp-content/uploads/2010/03/hsbcolorwheel.zip</a><br />
I didn&#8217;t clean up the code, but should be straightforward. Have fun playing with it and post or email me a link if you use it somewhere.  </p>
<h3>Some Examples</h3>
<p>
<a href="http://play.formatlos.de/hsb-color-wheel/"><img src="http://blog.formatlos.de/wp-content/uploads/2010/03/colorwheel_1.png" alt="" title="colorwheel_1" width="550" height="350" class="alignnone size-full wp-image-402" /></a>&nbsp;</p>
<p><span id="more-401"></span></p>
<p>
<a href="http://play.formatlos.de/hsb-color-wheel/"><img src="http://blog.formatlos.de/wp-content/uploads/2010/03/colorwheel_2.png" alt="" title="colorwheel_2" width="550" height="350" class="alignnone size-full wp-image-402" /></a>&nbsp;</p>
<p>
<a href="http://play.formatlos.de/hsb-color-wheel/"><img src="http://blog.formatlos.de/wp-content/uploads/2010/03/colorwheel_3.png" alt="" title="colorwheel_3" width="550" height="350" class="alignnone size-full wp-image-402" /></a><br />
&nbsp;</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.formatlos.de%2F2010%2F03%2F27%2Fhsb-color-wheel%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.formatlos.de%2F2010%2F03%2F27%2Fhsb-color-wheel%2F&amp;source=formatlos&amp;style=normal&amp;hashtags=ActionScript,AS3,Flash&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p class="wp-flattr-button"></p> <p><a href="http://blog.formatlos.de/?flattrss_redirect&amp;id=401&amp;md5=726f368fee7f58b0fcfbd0223241dd8f" title="Flattr" target="_blank"><img src="http://blog.formatlos.de/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.formatlos.de/2010/03/27/hsb-color-wheel/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Circlorate your Images</title>
		<link>http://blog.formatlos.de/2010/03/09/circlorate-your-images/</link>
		<comments>http://blog.formatlos.de/2010/03/09/circlorate-your-images/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 20:39:53 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Pixelbender]]></category>

		<guid isPermaLink="false">http://blog.formatlos.de/?p=393</guid>
		<description><![CDATA[Inspired by some artworks by Mexican artist Gabriel Orozco I saw just recently I decided to develop a tool for doing some kind of circle slice rotation with your images. The result is &#187; Circlorator &#171; and it's basically just a Pixelbender filter and some UI elements and that's it. Give it a try ...]]></description>
			<content:encoded><![CDATA[<p>Inspired by some artworks by Mexican artist Gabriel Orozco I saw just recently I decided to develop a tool for doing some kind of circle slice rotation with your images. The result is <a href="http://play.formatlos.de/circlorator/">&raquo; Circlorator &laquo;</a> and it&#8217;s basically just a Pixelbender filter and some UI elements and that&#8217;s it. Give it a try and generate your own artworks. </p>
<p><a href="http://play.formatlos.de/circlorator/">http://play.formatlos.de/circlorator/</a></p>
<h3> Pixelbender Source</h3>
<p>For those who want to play with the filter a little bit, there you go <a href="http://play.formatlos.de/wp-content/uploads/CirclorateFilter.zip">CirclorateFilter.zip</a></p>
<h3>Examples</h3>
<p><img src="http://blog.formatlos.de/wp-content/uploads/2010/03/circlorator-550x343.jpg" alt="" title="circlorator" width="550" height="343" class="alignnone size-large wp-image-395" />
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.formatlos.de%2F2010%2F03%2F09%2Fcirclorate-your-images%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.formatlos.de%2F2010%2F03%2F09%2Fcirclorate-your-images%2F&amp;source=formatlos&amp;style=normal&amp;hashtags=ActionScript,AS3,Flash,Pixelbender&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.formatlos.de/2010/03/09/circlorate-your-images/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Digital Graffiti &#8211; Spray Demo</title>
		<link>http://blog.formatlos.de/2008/12/19/digital-graffiti-spray-demo/</link>
		<comments>http://blog.formatlos.de/2008/12/19/digital-graffiti-spray-demo/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 15:20:49 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Physical Computing]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[RFID]]></category>

		<guid isPermaLink="false">http://blog.formatlos.de/?p=285</guid>
		<description><![CDATA[

The canvas with the van is not very nice, but just to show you a demo of the spray can. sorry for my bad spraying skills. see a description of the project here.]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.formatlos.de/2008/12/19/digital-graffiti-spray-demo/"><em>Click here to view the embedded video.</em></a></p>
<p>The canvas with the van is not very nice, but just to show you a demo of the spray can. sorry for my bad spraying skills. see a description of the project <a href="http://blog.formatlos.de/2008/12/01/digital-graffiti/">here</a>.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.formatlos.de%2F2008%2F12%2F19%2Fdigital-graffiti-spray-demo%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.formatlos.de%2F2008%2F12%2F19%2Fdigital-graffiti-spray-demo%2F&amp;source=formatlos&amp;style=normal&amp;hashtags=ActionScript,AIR,Arduino,AS3,Physical+Computing,RFID&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.formatlos.de/2008/12/19/digital-graffiti-spray-demo/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Digital Spraycan &#8211; Demo</title>
		<link>http://blog.formatlos.de/2008/12/12/digital-spraycan-edemo/</link>
		<comments>http://blog.formatlos.de/2008/12/12/digital-spraycan-edemo/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 09:56:33 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Physical Computing]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[RFID]]></category>

		<guid isPermaLink="false">http://blog.formatlos.de/?p=273</guid>
		<description><![CDATA[

I did this demo video earlier this year while developing the spray can for my thesis project. The RGB LED wasn't bright enough so I replaced it with a super bright one later on and moved it to the top of the can to lighten up the donut. ]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.formatlos.de/2008/12/12/digital-spraycan-edemo/"><em>Click here to view the embedded video.</em></a></p>
<p>I did this demo video earlier this year while developing the spray can for <a href="http://blog.formatlos.de/2008/12/01/digital-graffiti/">my thesis project</a>. The RGB LED wasn&#8217;t bright enough so I replaced it with a super bright one later on and moved it to the top of the can to lighten up the donut.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.formatlos.de%2F2008%2F12%2F12%2Fdigital-spraycan-edemo%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.formatlos.de%2F2008%2F12%2F12%2Fdigital-spraycan-edemo%2F&amp;source=formatlos&amp;style=normal&amp;hashtags=Arduino,Physical+Computing,RFID&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.formatlos.de/2008/12/12/digital-spraycan-edemo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>AmbientLightSensor Library updated</title>
		<link>http://blog.formatlos.de/2008/12/03/ambientlightsensor-updated/</link>
		<comments>http://blog.formatlos.de/2008/12/03/ambientlightsensor-updated/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 11:14:18 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Processing]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[JNI]]></category>
		<category><![CDATA[MacBookPro]]></category>
		<category><![CDATA[P5]]></category>

		<guid isPermaLink="false">http://blog.formatlos.de/?p=204</guid>
		<description><![CDATA[With the release of Processing 1.0 last week, the Processing team developed a set of library guidelines and a html template for creating a online summary page. To comply with these new requirements I updated the AmbientLightSensor Library. 

new project home:
http://projects.formatlos.de/ambientlightsensor/ ]]></description>
			<content:encoded><![CDATA[<p>With the release of Processing 1.0 last week, the Processing team developed a set of library guidelines and a html template for creating a online summary page. To comply with these new requirements I updated the AmbientLightSensor Library. </p>
<p><strong>new project home:</strong><br />
<a href="http://projects.formatlos.de/ambientlightsensor/" target="_blank">http://projects.formatlos.de/ambientlightsensor/ </a>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.formatlos.de%2F2008%2F12%2F03%2Fambientlightsensor-updated%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.formatlos.de%2F2008%2F12%2F03%2Fambientlightsensor-updated%2F&amp;source=formatlos&amp;style=normal&amp;hashtags=Apple,JNI,MacBookPro,P5,Processing&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.formatlos.de/2008/12/03/ambientlightsensor-updated/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Digital Graffiti &#8211; A Subculture Conquers Interactive Worlds</title>
		<link>http://blog.formatlos.de/2008/12/01/digital-graffiti/</link>
		<comments>http://blog.formatlos.de/2008/12/01/digital-graffiti/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 09:28:04 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Physical Computing]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[RFID]]></category>

		<guid isPermaLink="false">http://blog.formatlos.de/?p=185</guid>
		<description><![CDATA[Finally I delivered my thesis project I did in cooperation with Less Rain. The subject was &#187;Digital Graffiti - A Subculture Conquers Interactive Worlds&#171; and it's all about experimenting with different input devices for a physical, digital graffiti installation. The result is an Adobe AIR application using either the computer mouse, the Nintendo Wiimote ...]]></description>
			<content:encoded><![CDATA[<p>Finally I delivered my thesis project I did in cooperation with <a href="http://www.lessrain.com" target="_blank">Less Rain</a>. The subject was &raquo;Digital Graffiti &#8211; A Subculture Conquers Interactive Worlds&laquo; and it&#8217;s all about experimenting with different input devices for a physical, digital graffiti installation. The result is an Adobe AIR application using either the computer mouse, the Nintendo Wiimote or &raquo;VandalSpray&laquo; to paint digital canvases. VandalSpray is a digital spray can specifically designed for this purpose. It implements the attributes of a real spray can or at least trys to achieve them as natural as possible. Except a turnable bottom for changing the color, VandalSpray has no other interfacing elements than its real counterpart and therefore you don&#8217;t have to learn and explore the functionality first, because you intuitively know how to use it.</p>
<p>
<strong>VandalSpray features includes:</strong>
</p>
<ul>
<li>exchangeable caps</li>
<li>color display</li>
<li>digital valve system to vary the amount of &raquo;paint&laquo; coming out of the cap</li>
<li>different colors</li>
<li>wireless</li>
</ul>
<p>
The spray can is built upon the <a href="http://www.arduino.cc/" target="_blank">Arduino</a> platform and uses different sensors and electronic modules like a RFID reader, a super bright RGB LED, a Rotary Encoder, a Bluetooth module, a force sensitive resitor (FSR) and loads of wires and solder to implement the desired behavior. For tracking the spray can I use a Wiimote and the <a href="http://www.wiiflash.org" target="_blank">WiiFlash</a> ActionScript 3 library and server, but this could also be replaced by a standard webcam and an adequate tracking implementation.<br />
Because I didn&#8217;t want to put some kind of speaker in the spray can (there was no space left anyway) the spray sound is generated from the AIR app and output on the speakers of the notebook.
</p>
<p><div class="image img-a" style="width:560px;"><img src="http://blog.formatlos.de/wp-content/uploads/2008/12/vandalspray_1.jpg" alt="" title="VandalSpray vs. Montana spray can"/>
<p>VandalSpray vs. Montana spray can</p>
</div>
<div class="image img-a" style="width:560px;"><img src="http://blog.formatlos.de/wp-content/uploads/2008/12/vandalspray_2.jpg" alt="" title="VandalSpray electronics"/>
<p>VandalSpray electronics</p>
</div>
<p><strong>More</strong><br />
<a href="http://blog.formatlos.de/2008/12/12/digital-spraycan-edemo/">http://blog.formatlos.de/2008/12/12/digital-spraycan-edemo/</a><br />
<a href="http://blog.formatlos.de/2008/12/19/digital-graffiti-spray-demo/">http://blog.formatlos.de/2008/12/19/digital-graffiti-spray-demo/</a></p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.formatlos.de%2F2008%2F12%2F01%2Fdigital-graffiti%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.formatlos.de%2F2008%2F12%2F01%2Fdigital-graffiti%2F&amp;source=formatlos&amp;style=normal&amp;hashtags=ActionScript,AIR,Arduino,AS3,Physical+Computing,RFID&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.formatlos.de/2008/12/01/digital-graffiti/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Portfolio Moved</title>
		<link>http://blog.formatlos.de/2008/10/23/portfolio-moved/</link>
		<comments>http://blog.formatlos.de/2008/10/23/portfolio-moved/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 09:26:44 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://blog.formatlos.de/?p=138</guid>
		<description><![CDATA[As there is no real backend, my old portfolio site is quite hard to update, so I decided to move the portfolio temporarily to this blog until i have the time to go for new flash site. You can find a small selection of projects here.]]></description>
			<content:encoded><![CDATA[<p>As there is no real backend, my <a href="http://archive.formatlos.de/2007-Portfolio/">old portfolio site</a> is quite hard to update, so I decided to move the portfolio temporarily to this blog until i have the time to go for new flash site. You can find a small selection of projects <a href="http://portfolio.formatlos.de">here</a>.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.formatlos.de%2F2008%2F10%2F23%2Fportfolio-moved%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.formatlos.de%2F2008%2F10%2F23%2Fportfolio-moved%2F&amp;source=formatlos&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.formatlos.de/2008/10/23/portfolio-moved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>stereosucker.de</title>
		<link>http://blog.formatlos.de/2008/09/22/stereosucker/</link>
		<comments>http://blog.formatlos.de/2008/09/22/stereosucker/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 19:09:18 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[SWFAddress]]></category>
		<category><![CDATA[swffit]]></category>

		<guid isPermaLink="false">http://blog.formatlos.de/?p=31</guid>
		<description><![CDATA[One of my latest projects just launched last week. It's a portfolio site for visual artist and interface designer stereosucker aka Tine Päch. 

The site is completely dynamic and provides deep linking and browser button support through SWFAddress. 

Homepage

Projectpage]]></description>
			<content:encoded><![CDATA[<p>One of my latest projects just launched last week. It&#8217;s a portfolio site for visual artist and interface designer stereosucker aka Tine Päch. </p>
<p>The site is completely dynamic and provides deep linking and browser button support through <a href="http://www.asual.com/swfaddress/" target="_blank">SWFAddress</a>. </p>
<div class="image img-a" style="width:560px;"><a href="http://www.stereosucker.de" target="_blank"><img src="http://blog.formatlos.de/wp-content/uploads/2008/09/stereosucker_1.jpg" alt="homepage" title="homepage" /></a>
<p>Homepage</p>
</div>
<div class="image img-a" style="width:560px;"><a href="http://www.stereosucker.de/#/Portfolio/dreams" target="_blank"><img src="http://blog.formatlos.de/wp-content/uploads/2008/09/stereosucker_2.jpg" alt="projectpage" title="projectpage" /></a>
<p>Projectpage</p>
</div>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.formatlos.de%2F2008%2F09%2F22%2Fstereosucker%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.formatlos.de%2F2008%2F09%2F22%2Fstereosucker%2F&amp;source=formatlos&amp;style=normal&amp;hashtags=AS3,SWFAddress,swffit&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.formatlos.de/2008/09/22/stereosucker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

