<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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: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>Comments on: TUIO multitouch on iPhone via browser hack</title>
	<atom:link href="http://hackaday.com/2009/04/22/tuio-multitouch-on-iphone-via-browser-hack/feed/" rel="self" type="application/rss+xml" />
	<link>http://hackaday.com/2009/04/22/tuio-multitouch-on-iphone-via-browser-hack/</link>
	<description>Fresh hacks every day</description>
	<lastBuildDate>Fri, 10 Feb 2012 15:30:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: cptfalcon</title>
		<link>http://hackaday.com/2009/04/22/tuio-multitouch-on-iphone-via-browser-hack/comment-page-1/#comment-71632</link>
		<dc:creator><![CDATA[cptfalcon]]></dc:creator>
		<pubDate>Fri, 24 Apr 2009 04:38:49 +0000</pubDate>
		<guid isPermaLink="false">http://hackaday.com/?p=10539#comment-71632</guid>
		<description><![CDATA[thanks andrew, i had no idea the web app stuff for the itouch had support for multitouch, that is pretty neat... might have to see what neat tricks i could do with a multitouch page :)]]></description>
		<content:encoded><![CDATA[<p>thanks andrew, i had no idea the web app stuff for the itouch had support for multitouch, that is pretty neat&#8230; might have to see what neat tricks i could do with a multitouch page :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mitch</title>
		<link>http://hackaday.com/2009/04/22/tuio-multitouch-on-iphone-via-browser-hack/comment-page-1/#comment-71627</link>
		<dc:creator><![CDATA[Mitch]]></dc:creator>
		<pubDate>Fri, 24 Apr 2009 04:11:37 +0000</pubDate>
		<guid isPermaLink="false">http://hackaday.com/?p=10539#comment-71627</guid>
		<description><![CDATA[This is why apple sucks. They have an absolutley amazing piece of hardware, and instead of opening it up so people can do revolutionary things, they have to &quot;approve&quot; applications and decide to block things that don;t fit with apple. I think Wired sumed it up best with the following quote... &quot;your iPhone is a pathetic piece of DRM-riddled crippleware&quot;...]]></description>
		<content:encoded><![CDATA[<p>This is why apple sucks. They have an absolutley amazing piece of hardware, and instead of opening it up so people can do revolutionary things, they have to &#8220;approve&#8221; applications and decide to block things that don;t fit with apple. I think Wired sumed it up best with the following quote&#8230; &#8220;your iPhone is a pathetic piece of DRM-riddled crippleware&#8221;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Turley</title>
		<link>http://hackaday.com/2009/04/22/tuio-multitouch-on-iphone-via-browser-hack/comment-page-1/#comment-71620</link>
		<dc:creator><![CDATA[Andrew Turley]]></dc:creator>
		<pubDate>Thu, 23 Apr 2009 23:54:15 +0000</pubDate>
		<guid isPermaLink="false">http://hackaday.com/?p=10539#comment-71620</guid>
		<description><![CDATA[@cptfalcon, the described program uses Safari, not OSCemote, like Peter says. The touch events have a list of touches, and each touch has a property called &quot;identifier&quot; that is unique for that touch within the lifetime of the touch. But the identifiers (which are just integers) can be reused. When a touch ends, a touchend event is sent out (and received by listeners), and you can get the touches from that event to determine when a given touch has ended. That way you can know that the current touch #7 is different from the touch #7 you were following earlier, because there was a touchend event with touch #7 in between the two.

@gadgeteer, sorry about the confusion. I think I wrote that at around 2:00 AM, so I may not have been clear.

@peter, I would call OSCemote &quot;a platform for specialized web apps&quot; rather than an actual web app. I mean, you can open any web page from within the app.]]></description>
		<content:encoded><![CDATA[<p>@cptfalcon, the described program uses Safari, not OSCemote, like Peter says. The touch events have a list of touches, and each touch has a property called &#8220;identifier&#8221; that is unique for that touch within the lifetime of the touch. But the identifiers (which are just integers) can be reused. When a touch ends, a touchend event is sent out (and received by listeners), and you can get the touches from that event to determine when a given touch has ended. That way you can know that the current touch #7 is different from the touch #7 you were following earlier, because there was a touchend event with touch #7 in between the two.</p>
<p>@gadgeteer, sorry about the confusion. I think I wrote that at around 2:00 AM, so I may not have been clear.</p>
<p>@peter, I would call OSCemote &#8220;a platform for specialized web apps&#8221; rather than an actual web app. I mean, you can open any web page from within the app.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Kirn</title>
		<link>http://hackaday.com/2009/04/22/tuio-multitouch-on-iphone-via-browser-hack/comment-page-1/#comment-71595</link>
		<dc:creator><![CDATA[Peter Kirn]]></dc:creator>
		<pubDate>Thu, 23 Apr 2009 18:45:40 +0000</pubDate>
		<guid isPermaLink="false">http://hackaday.com/?p=10539#comment-71595</guid>
		<description><![CDATA[gadgeteer, that&#039;s incorrect. He was inspired by the fact that OSCemote uses essentially an embedded Web interface. It is absolutely possible to run an application in Safari, which is what he&#039;s doing here. It is a Web app. Arguably, so is OSCemote, but that&#039;s not what he&#039;s using.]]></description>
		<content:encoded><![CDATA[<p>gadgeteer, that&#8217;s incorrect. He was inspired by the fact that OSCemote uses essentially an embedded Web interface. It is absolutely possible to run an application in Safari, which is what he&#8217;s doing here. It is a Web app. Arguably, so is OSCemote, but that&#8217;s not what he&#8217;s using.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: michu</title>
		<link>http://hackaday.com/2009/04/22/tuio-multitouch-on-iphone-via-browser-hack/comment-page-1/#comment-71592</link>
		<dc:creator><![CDATA[michu]]></dc:creator>
		<pubDate>Thu, 23 Apr 2009 18:00:46 +0000</pubDate>
		<guid isPermaLink="false">http://hackaday.com/?p=10539#comment-71592</guid>
		<description><![CDATA[lcd4linux (bleeding edge) does support the vnc protocol - also buttons are supported. so you may use lcd4linux and a vnc viewer on your iphone to remote control something (eg. music player)]]></description>
		<content:encoded><![CDATA[<p>lcd4linux (bleeding edge) does support the vnc protocol &#8211; also buttons are supported. so you may use lcd4linux and a vnc viewer on your iphone to remote control something (eg. music player)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cptfalcon</title>
		<link>http://hackaday.com/2009/04/22/tuio-multitouch-on-iphone-via-browser-hack/comment-page-1/#comment-71591</link>
		<dc:creator><![CDATA[cptfalcon]]></dc:creator>
		<pubDate>Thu, 23 Apr 2009 17:53:06 +0000</pubDate>
		<guid isPermaLink="false">http://hackaday.com/?p=10539#comment-71591</guid>
		<description><![CDATA[thanks for the clarification, apparently i miss-understood the bit about oscremote]]></description>
		<content:encoded><![CDATA[<p>thanks for the clarification, apparently i miss-understood the bit about oscremote</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gadgeteer</title>
		<link>http://hackaday.com/2009/04/22/tuio-multitouch-on-iphone-via-browser-hack/comment-page-1/#comment-71554</link>
		<dc:creator><![CDATA[Gadgeteer]]></dc:creator>
		<pubDate>Thu, 23 Apr 2009 11:06:32 +0000</pubDate>
		<guid isPermaLink="false">http://hackaday.com/?p=10539#comment-71554</guid>
		<description><![CDATA[This is NOT running in Safari.  He is using a downloaded iPhone app called OSCremote which happens to be configured using HTML.  More info here:
http://www.pillowsopher.com/blog/?p=79]]></description>
		<content:encoded><![CDATA[<p>This is NOT running in Safari.  He is using a downloaded iPhone app called OSCremote which happens to be configured using HTML.  More info here:<br />
<a href="http://www.pillowsopher.com/blog/?p=79" rel="nofollow">http://www.pillowsopher.com/blog/?p=79</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cptfalcon</title>
		<link>http://hackaday.com/2009/04/22/tuio-multitouch-on-iphone-via-browser-hack/comment-page-1/#comment-71514</link>
		<dc:creator><![CDATA[cptfalcon]]></dc:creator>
		<pubDate>Thu, 23 Apr 2009 03:15:54 +0000</pubDate>
		<guid isPermaLink="false">http://hackaday.com/?p=10539#comment-71514</guid>
		<description><![CDATA[how are mutltiple touches handled in safari? does each touch get a special event-id so that you can distinguish which finger is moving on a move update? does this require a specific safari js interpreter, or could it be used any multitouch browser?]]></description>
		<content:encoded><![CDATA[<p>how are mutltiple touches handled in safari? does each touch get a special event-id so that you can distinguish which finger is moving on a move update? does this require a specific safari js interpreter, or could it be used any multitouch browser?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Kirn</title>
		<link>http://hackaday.com/2009/04/22/tuio-multitouch-on-iphone-via-browser-hack/comment-page-1/#comment-71512</link>
		<dc:creator><![CDATA[Peter Kirn]]></dc:creator>
		<pubDate>Thu, 23 Apr 2009 02:48:23 +0000</pubDate>
		<guid isPermaLink="false">http://hackaday.com/?p=10539#comment-71512</guid>
		<description><![CDATA[Yep, I&#039;m using it on an iPod touch!]]></description>
		<content:encoded><![CDATA[<p>Yep, I&#8217;m using it on an iPod touch!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blizzarddemon</title>
		<link>http://hackaday.com/2009/04/22/tuio-multitouch-on-iphone-via-browser-hack/comment-page-1/#comment-71509</link>
		<dc:creator><![CDATA[blizzarddemon]]></dc:creator>
		<pubDate>Thu, 23 Apr 2009 01:56:24 +0000</pubDate>
		<guid isPermaLink="false">http://hackaday.com/?p=10539#comment-71509</guid>
		<description><![CDATA[could this work on the itouch too?]]></description>
		<content:encoded><![CDATA[<p>could this work on the itouch too?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jproach</title>
		<link>http://hackaday.com/2009/04/22/tuio-multitouch-on-iphone-via-browser-hack/comment-page-1/#comment-71500</link>
		<dc:creator><![CDATA[jproach]]></dc:creator>
		<pubDate>Wed, 22 Apr 2009 23:43:26 +0000</pubDate>
		<guid isPermaLink="false">http://hackaday.com/?p=10539#comment-71500</guid>
		<description><![CDATA[If you like the visuals, try Plasma Pong: http://www.youtube.com/watch?v=NDjseVmruH8]]></description>
		<content:encoded><![CDATA[<p>If you like the visuals, try Plasma Pong: <a href="http://www.youtube.com/watch?v=NDjseVmruH8" rel="nofollow">http://www.youtube.com/watch?v=NDjseVmruH8</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

