<?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: Getting started</title>
	<atom:link href="http://bubblebird.at/tuioflash/guides/getting-started/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: gimmix</title>
		<link>http://bubblebird.at/tuioflash/guides/getting-started/comment-page-1/#comment-8965</link>
		<dc:creator>gimmix</dc:creator>
		<pubDate>Sun, 31 Jul 2011 11:08:17 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/#comment-8965</guid>
		<description>No problem ;) 
On your other problem. In the current svn version the org.tuio.TouchEvent has been renamed to org.tuio.TuioTouchEvent in order to prevent naming conflicts with the native flash.events.TouchEvent, so you will need to refactor your code in order to make it compile with the svn version of the library.</description>
		<content:encoded><![CDATA[<p>No problem <img src='http://bubblebird.at/tuioflash/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
On your other problem. In the current svn version the org.tuio.TouchEvent has been renamed to org.tuio.TuioTouchEvent in order to prevent naming conflicts with the native flash.events.TouchEvent, so you will need to refactor your code in order to make it compile with the svn version of the library.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ek</title>
		<link>http://bubblebird.at/tuioflash/guides/getting-started/comment-page-1/#comment-8951</link>
		<dc:creator>ek</dc:creator>
		<pubDate>Sat, 30 Jul 2011 22:14:31 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/#comment-8951</guid>
		<description>oops... sorry I did not see your reply until I sent my latest post. thanks for your reply</description>
		<content:encoded><![CDATA[<p>oops&#8230; sorry I did not see your reply until I sent my latest post. thanks for your reply</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ek</title>
		<link>http://bubblebird.at/tuioflash/guides/getting-started/comment-page-1/#comment-8950</link>
		<dc:creator>ek</dc:creator>
		<pubDate>Sat, 30 Jul 2011 22:13:21 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/#comment-8950</guid>
		<description>more details about the problem described in the previous post ...
if I comment out in tuio/debug/tuioDebug.as the line number 43 where it says

[Embed(source=&quot;/org/tuio/assets/fonts.swf&quot;, fontName=&quot;Arial&quot;)]

the it works, but I get further errors related to TouchEvent :

Scene 1, Layer &#039;actions&#039;, Frame 5, Line 226	1046: Type was not found or was not a compile-time constant: TouchEvent.

However I can type org.tuio. and the Flash editor shows me the TouchEvent file in the autocompletition menu. The full path is org.tuio.TouchEvent and I am always refering to the classs with that full path to avoid conflicts, for instance in line 226 it says :

function touchDownCircle(e:org.tuio.TouchEvent):void { trace(e); }

So I dont see why it does not find it because it is there and the editor itself sees it.

thanks for any help</description>
		<content:encoded><![CDATA[<p>more details about the problem described in the previous post &#8230;<br />
if I comment out in tuio/debug/tuioDebug.as the line number 43 where it says</p>
<p>[Embed(source="/org/tuio/assets/fonts.swf", fontName="Arial")]</p>
<p>the it works, but I get further errors related to TouchEvent :</p>
<p>Scene 1, Layer &#8216;actions&#8217;, Frame 5, Line 226	1046: Type was not found or was not a compile-time constant: TouchEvent.</p>
<p>However I can type org.tuio. and the Flash editor shows me the TouchEvent file in the autocompletition menu. The full path is org.tuio.TouchEvent and I am always refering to the classs with that full path to avoid conflicts, for instance in line 226 it says :</p>
<p>function touchDownCircle(e:org.tuio.TouchEvent):void { trace(e); }</p>
<p>So I dont see why it does not find it because it is there and the editor itself sees it.</p>
<p>thanks for any help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gimmix</title>
		<link>http://bubblebird.at/tuioflash/guides/getting-started/comment-page-1/#comment-8941</link>
		<dc:creator>gimmix</dc:creator>
		<pubDate>Sat, 30 Jul 2011 16:08:47 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/#comment-8941</guid>
		<description>You need to configure flash to use the flexSDK because the TuioDebug class uses an Embed tag to import a font which isn&#039;t supported by flash.

you can find some info on how to do that here http://actionscriptexamples.com/2008/10/26/using-the-flex-sdk-with-flash-cs4/

or simply google flash and flexsdk</description>
		<content:encoded><![CDATA[<p>You need to configure flash to use the flexSDK because the TuioDebug class uses an Embed tag to import a font which isn&#8217;t supported by flash.</p>
<p>you can find some info on how to do that here <a href="http://actionscriptexamples.com/2008/10/26/using-the-flex-sdk-with-flash-cs4/" rel="nofollow">http://actionscriptexamples.com/2008/10/26/using-the-flex-sdk-with-flash-cs4/</a></p>
<p>or simply google flash and flexsdk</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ek</title>
		<link>http://bubblebird.at/tuioflash/guides/getting-started/comment-page-1/#comment-8933</link>
		<dc:creator>ek</dc:creator>
		<pubDate>Sat, 30 Jul 2011 08:32:04 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/#comment-8933</guid>
		<description>hi 

I am testing the latest svn version from Flash CS5 and I get this proble. I get a pop up saying 

&quot;You have used a feature that requies the Flash SDK :
Embed metadata&quot;

This was not needed before</description>
		<content:encoded><![CDATA[<p>hi </p>
<p>I am testing the latest svn version from Flash CS5 and I get this proble. I get a pop up saying </p>
<p>&#8220;You have used a feature that requies the Flash SDK :<br />
Embed metadata&#8221;</p>
<p>This was not needed before</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DAVID</title>
		<link>http://bubblebird.at/tuioflash/guides/getting-started/comment-page-1/#comment-5687</link>
		<dc:creator>DAVID</dc:creator>
		<pubDate>Thu, 28 Apr 2011 05:04:40 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/#comment-5687</guid>
		<description>Thanks for your help gimmix
Worked perfectly as you said
worked well in flex 3 and flex 4
in Flex 3 is more accurate than in flex 4
any idea why
ohh my machine may be</description>
		<content:encoded><![CDATA[<p>Thanks for your help gimmix<br />
Worked perfectly as you said<br />
worked well in flex 3 and flex 4<br />
in Flex 3 is more accurate than in flex 4<br />
any idea why<br />
ohh my machine may be</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gimmix</title>
		<link>http://bubblebird.at/tuioflash/guides/getting-started/comment-page-1/#comment-5541</link>
		<dc:creator>gimmix</dc:creator>
		<pubDate>Wed, 20 Apr 2011 19:41:56 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/#comment-5541</guid>
		<description>Well either the stage or myRectangle are null at that point. In which class do you comment this line? Normally in AIR apps you have to make sure that the app is fully initialized before referencing the stage.  If you are using mxml this is done via the creationComplete attribute. 
If you simply have a main class you have to do something like this:
&lt;code&gt;
public function Main():void 
{
   if (stage) init();
   else addEventListener(Event.ADDED_TO_STAGE, init);
}

private function init(e:Event = null):void 
{
   removeEventListener(Event.ADDED_TO_STAGE, init);
   //more code here
}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Well either the stage or myRectangle are null at that point. In which class do you comment this line? Normally in AIR apps you have to make sure that the app is fully initialized before referencing the stage.  If you are using mxml this is done via the creationComplete attribute.<br />
If you simply have a main class you have to do something like this:</p>
<div class="codesnip-container" >public function Main():void<br />
{<br />
   if (stage) init();<br />
   else addEventListener(Event.ADDED_TO_STAGE, init);<br />
}</p>
<p>private function init(e:Event = null):void<br />
{<br />
   removeEventListener(Event.ADDED_TO_STAGE, init);<br />
   //more code here<br />
}</p></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: DAVID</title>
		<link>http://bubblebird.at/tuioflash/guides/getting-started/comment-page-1/#comment-5522</link>
		<dc:creator>DAVID</dc:creator>
		<pubDate>Wed, 20 Apr 2011 05:19:43 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/#comment-5522</guid>
		<description>Thanks for your help gimmix
I created a project with adobe AIR
but now I have an error. when I run the application and loaded into Adobe AIR, I receive the following error
TypeError: Error #1009: Cannot access a property or method of a null object reference…..

This error is removed when I commented this line of code
// stage.addChild(myRectangle);
but how add the rectangle to the stage
I&#039;m using flex 4
thanks and sorry for basic questions</description>
		<content:encoded><![CDATA[<p>Thanks for your help gimmix<br />
I created a project with adobe AIR<br />
but now I have an error. when I run the application and loaded into Adobe AIR, I receive the following error<br />
TypeError: Error #1009: Cannot access a property or method of a null object reference…..</p>
<p>This error is removed when I commented this line of code<br />
// stage.addChild(myRectangle);<br />
but how add the rectangle to the stage<br />
I&#8217;m using flex 4<br />
thanks and sorry for basic questions</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gimmix</title>
		<link>http://bubblebird.at/tuioflash/guides/getting-started/comment-page-1/#comment-5513</link>
		<dc:creator>gimmix</dc:creator>
		<pubDate>Tue, 19 Apr 2011 20:53:19 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/#comment-5513</guid>
		<description>The best way would be to create an AIR project and copy the example files into it (and fix probable package errors) or simply link the example folder in the build options.
Then you simply create an instance of the Example clss and add to the stage.</description>
		<content:encoded><![CDATA[<p>The best way would be to create an AIR project and copy the example files into it (and fix probable package errors) or simply link the example folder in the build options.<br />
Then you simply create an instance of the Example clss and add to the stage.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DAVID</title>
		<link>http://bubblebird.at/tuioflash/guides/getting-started/comment-page-1/#comment-5511</link>
		<dc:creator>DAVID</dc:creator>
		<pubDate>Tue, 19 Apr 2011 19:14:01 +0000</pubDate>
		<guid isPermaLink="false">http://bubblebird.at/tuioflash/#comment-5511</guid>
		<description>HI
I have a very basic question
to run the samples I have to create
create a flex project  with  Adobe AIR  or  create an ActionScript project  or that I use?

Please help me on this.! I am new  and that is my confusión
I am trying it on  adobe flex3
thanks and sorry</description>
		<content:encoded><![CDATA[<p>HI<br />
I have a very basic question<br />
to run the samples I have to create<br />
create a flex project  with  Adobe AIR  or  create an ActionScript project  or that I use?</p>
<p>Please help me on this.! I am new  and that is my confusión<br />
I am trying it on  adobe flex3<br />
thanks and sorry</p>
]]></content:encoded>
	</item>
</channel>
</rss>

