<?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/"
		>
<channel>
	<title>Comments on: Using the TuioManager</title>
	<atom:link href="http://bubblebird.at/tuioflash/guides/using-the-tuiomanager/feed/" rel="self" type="application/rss+xml" />
	<link>http://bubblebird.at/tuioflash</link>
	<description>Teaching Flash some new tricks</description>
	<lastBuildDate>Sun, 29 Jan 2012 14:12:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: iluvAS</title>
		<link>http://bubblebird.at/tuioflash/guides/using-the-tuiomanager/comment-page-1/#comment-14461</link>
		<dc:creator>iluvAS</dc:creator>
		<pubDate>Thu, 15 Dec 2011 08:03:58 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/?page_id=143#comment-14461</guid>
		<description>sry bout that, jus noticed there were two different classes TUIOManager and TuioManager ;P</description>
		<content:encoded><![CDATA[<p>sry bout that, jus noticed there were two different classes TUIOManager and TuioManager ;P</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: iluvAS</title>
		<link>http://bubblebird.at/tuioflash/guides/using-the-tuiomanager/comment-page-1/#comment-14459</link>
		<dc:creator>iluvAS</dc:creator>
		<pubDate>Thu, 15 Dec 2011 07:55:12 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/?page_id=143#comment-14459</guid>
		<description>hi, so theres no guide for the latest version of the lib? TuioManager now doesnt have the init function, and i think due to that, my TuioTouchEvents arent dispatching. an updated guide would be really helpful.</description>
		<content:encoded><![CDATA[<p>hi, so theres no guide for the latest version of the lib? TuioManager now doesnt have the init function, and i think due to that, my TuioTouchEvents arent dispatching. an updated guide would be really helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gimmix</title>
		<link>http://bubblebird.at/tuioflash/guides/using-the-tuiomanager/comment-page-1/#comment-12510</link>
		<dc:creator>gimmix</dc:creator>
		<pubDate>Fri, 11 Nov 2011 10:54:59 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/?page_id=143#comment-12510</guid>
		<description>That is an error due to an unnecessary import statement in the TuioFiducialEvent on line 6. Just remove it or comment it.
This throws an error because the mx.controls package is only available in FlashBuilder and the flexsdk but not in Flash.</description>
		<content:encoded><![CDATA[<p>That is an error due to an unnecessary import statement in the TuioFiducialEvent on line 6. Just remove it or comment it.<br />
This throws an error because the mx.controls package is only available in FlashBuilder and the flexsdk but not in Flash.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jawook</title>
		<link>http://bubblebird.at/tuioflash/guides/using-the-tuiomanager/comment-page-1/#comment-12489</link>
		<dc:creator>Jawook</dc:creator>
		<pubDate>Fri, 11 Nov 2011 02:31:27 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/?page_id=143#comment-12489</guid>
		<description>Hi. all.
I&#039;ve got a problem. but I don&#039;t know what &#039;s wrong.
please let me take 

*error
1172: Definition mx.controls:Button could not be found. (what&#039;s this?)

* my code
import org.tuio.*;
import org.tuio.osc.*;
import org.tuio.connectors.*;
import org.tuio.debug.*;
import flash.display.*;
import flash.text.*;
import flash.ui.*;
import flash.events.Event;
	
	
	 
public class Main extends MovieClip
{
private var tuioClient:TuioClient = new TuioClient(new UDPConnector());
private var tuioManager:TuioManager = TuioManager.init(stage);              
private var myRectangle:MovieClip = new MovieClip();
		
public function Main() 
{
tuioClient.addListener(TuioDebug.init(stage));
tuioClient.addListener(tuioManager);
			
myRectangle.graphics.beginFill(0x6633cc);
myRectangle.graphics.drawRect(300, 300, 200, 200);

addChild(myRectangle);
addEventListener(TuioTouchEvent.TOUCH_DOWN, handler_touchDown);
}
.
.
.
.</description>
		<content:encoded><![CDATA[<p>Hi. all.<br />
I&#8217;ve got a problem. but I don&#8217;t know what &#8216;s wrong.<br />
please let me take </p>
<p>*error<br />
1172: Definition mx.controls:Button could not be found. (what&#8217;s this?)</p>
<p>* my code<br />
import org.tuio.*;<br />
import org.tuio.osc.*;<br />
import org.tuio.connectors.*;<br />
import org.tuio.debug.*;<br />
import flash.display.*;<br />
import flash.text.*;<br />
import flash.ui.*;<br />
import flash.events.Event;</p>
<p>public class Main extends MovieClip<br />
{<br />
private var tuioClient:TuioClient = new TuioClient(new UDPConnector());<br />
private var tuioManager:TuioManager = TuioManager.init(stage);<br />
private var myRectangle:MovieClip = new MovieClip();</p>
<p>public function Main()<br />
{<br />
tuioClient.addListener(TuioDebug.init(stage));<br />
tuioClient.addListener(tuioManager);</p>
<p>myRectangle.graphics.beginFill(0x6633cc);<br />
myRectangle.graphics.drawRect(300, 300, 200, 200);</p>
<p>addChild(myRectangle);<br />
addEventListener(TuioTouchEvent.TOUCH_DOWN, handler_touchDown);<br />
}<br />
.<br />
.<br />
.<br />
.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay</title>
		<link>http://bubblebird.at/tuioflash/guides/using-the-tuiomanager/comment-page-1/#comment-12436</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Thu, 10 Nov 2011 11:02:41 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/?page_id=143#comment-12436</guid>
		<description>Hi. there
thank for your blog.

I&#039;ve got a problem. but I don&#039; know.
I&#039;ve worked my application with Flash CS5.5, AIR 2.5.
please let me know
My error message : 1172: Definition mx.controls:Button could not be found.

my code :

private var tc:TuioClient = new TuioClient(new UDPConnector(&quot;127.0.0.1&quot;, 3333));  // This connector can only be used within Air2.0 or newer Air projects.

private var tuioManager:TuioManager = TuioManager.init(stage); // what&#039;s problem
.
.
.</description>
		<content:encoded><![CDATA[<p>Hi. there<br />
thank for your blog.</p>
<p>I&#8217;ve got a problem. but I don&#8217; know.<br />
I&#8217;ve worked my application with Flash CS5.5, AIR 2.5.<br />
please let me know<br />
My error message : 1172: Definition mx.controls:Button could not be found.</p>
<p>my code :</p>
<p>private var tc:TuioClient = new TuioClient(new UDPConnector(&#8220;127.0.0.1&#8243;, 3333));  // This connector can only be used within Air2.0 or newer Air projects.</p>
<p>private var tuioManager:TuioManager = TuioManager.init(stage); // what&#8217;s problem<br />
.<br />
.<br />
.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gimmix</title>
		<link>http://bubblebird.at/tuioflash/guides/using-the-tuiomanager/comment-page-1/#comment-8572</link>
		<dc:creator>gimmix</dc:creator>
		<pubDate>Tue, 19 Jul 2011 22:21:27 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/?page_id=143#comment-8572</guid>
		<description>maybe try manycam, that worked for me once.</description>
		<content:encoded><![CDATA[<p>maybe try manycam, that worked for me once.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan</title>
		<link>http://bubblebird.at/tuioflash/guides/using-the-tuiomanager/comment-page-1/#comment-8554</link>
		<dc:creator>Jonathan</dc:creator>
		<pubDate>Tue, 19 Jul 2011 08:00:46 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/?page_id=143#comment-8554</guid>
		<description>Thanks for the quick reply, I&#039;m currently running my tests on a Mac OS 10.6.
I thought I could use the same camera source (in fact, Kinect), with two different trackers at the same time... I&#039;m going to try to find a multiplexer software, but it seems not , if you know any other solution, please let me know.</description>
		<content:encoded><![CDATA[<p>Thanks for the quick reply, I&#8217;m currently running my tests on a Mac OS 10.6.<br />
I thought I could use the same camera source (in fact, Kinect), with two different trackers at the same time&#8230; I&#8217;m going to try to find a multiplexer software, but it seems not , if you know any other solution, please let me know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gimmix</title>
		<link>http://bubblebird.at/tuioflash/guides/using-the-tuiomanager/comment-page-1/#comment-8543</link>
		<dc:creator>gimmix</dc:creator>
		<pubDate>Mon, 18 Jul 2011 19:38:01 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/?page_id=143#comment-8543</guid>
		<description>well my gues would be that both rackers can&#039;t use the same webcam at the same time, so you will need either two webcams, one for each tracker, or a webcam multiplexer which basically is a software that ceates multiple virtual webcams with the same video feed. On which platform are you working on?</description>
		<content:encoded><![CDATA[<p>well my gues would be that both rackers can&#8217;t use the same webcam at the same time, so you will need either two webcams, one for each tracker, or a webcam multiplexer which basically is a software that ceates multiple virtual webcams with the same video feed. On which platform are you working on?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan</title>
		<link>http://bubblebird.at/tuioflash/guides/using-the-tuiomanager/comment-page-1/#comment-8539</link>
		<dc:creator>Jonathan</dc:creator>
		<pubDate>Mon, 18 Jul 2011 18:05:55 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/?page_id=143#comment-8539</guid>
		<description>Hi there,

my trying to figure out how to detect objects.
I&#039;m running TuioKinect 0.1, udp-flashlc bridge and a simple TuioClient AIR 2.0 app on MacOS... At the moment, it works great for cursor detection.
When I start reacTIVision (with TuioKinect already running), I got the message &quot;camera disconnected&quot;. No TuioObject events firing obviously...

What is the correct way to track fiducials ?
Did I made something wrong with the couple TuioKinect/reacTIVision ? Any help very appreciated :)


thanks for this huge work</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>my trying to figure out how to detect objects.<br />
I&#8217;m running TuioKinect 0.1, udp-flashlc bridge and a simple TuioClient AIR 2.0 app on MacOS&#8230; At the moment, it works great for cursor detection.<br />
When I start reacTIVision (with TuioKinect already running), I got the message &#8220;camera disconnected&#8221;. No TuioObject events firing obviously&#8230;</p>
<p>What is the correct way to track fiducials ?<br />
Did I made something wrong with the couple TuioKinect/reacTIVision ? Any help very appreciated <img src='http://bubblebird.at/tuioflash/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>thanks for this huge work</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pene</title>
		<link>http://bubblebird.at/tuioflash/guides/using-the-tuiomanager/comment-page-1/#comment-6955</link>
		<dc:creator>Pene</dc:creator>
		<pubDate>Thu, 09 Jun 2011 18:42:57 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/?page_id=143#comment-6955</guid>
		<description>Hey, I am trying to figure out your library and for whatever reason I cannot for the life of me get any objects to be detected. I can get TOUCH_DOWN detected easy enough but ADD_OBJECT does not seem to be firing. Is there an example anywhere that I could look at to see an object detected reliably?</description>
		<content:encoded><![CDATA[<p>Hey, I am trying to figure out your library and for whatever reason I cannot for the life of me get any objects to be detected. I can get TOUCH_DOWN detected easy enough but ADD_OBJECT does not seem to be firing. Is there an example anywhere that I could look at to see an object detected reliably?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

