<?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>MultiTouchup.com</title>
	<atom:link href="http://multitouchup.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://multitouchup.com</link>
	<description>Explore Multitouch on the Flash platform.  Video tutorials and related content presented by Matt LeGrand</description>
	<lastBuildDate>Thu, 15 Mar 2012 21:56:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Adding View Source to Adobe Air in Flash Builder 4.5 and 4.6</title>
		<link>http://multitouchup.com/adding-view-source-to-adobe-air-in-flash-builder-4-5-and-4-6/</link>
		<comments>http://multitouchup.com/adding-view-source-to-adobe-air-in-flash-builder-4-5-and-4-6/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 21:56:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://multitouchup.com/?p=1230</guid>
		<description><![CDATA[<img src="http://multitouchup.com/wp-content/uploads/2012/03/right_click.jpeg" alt="" title="right_click" width="160" height="120" class="alignright size-full wp-image-1233" />Oh jeez.  I remember Flex Builder 3 making it easy for people to just right click your application and view source.  What's happened here? 

Quick answer is: 

Listen for the applicationComplete event and add the menu item:

ViewSource.addMenuItem(this, "www.LinkToYourSource") ]]></description>
			<content:encoded><![CDATA[<p><img src="http://multitouchup.com/wp-content/uploads/2012/03/right_click.jpeg" alt="" title="right_click" width="160" height="120" class="alignright size-full wp-image-1233" />Oh jeez.  I remember Flex Builder 3 making it easy for people to just right click your application and view source.  What&#8217;s happened here? </p>
<p>Quick answer is: </p>
<p>Listen for the applicationComplete event and add the menu item:</p>
<p>ViewSource.addMenuItem(this, &#8220;www.LinkToYourSource.org/srcview&#8221;) </p>
<p>The long answer is that I spent the better part of an afternoon looking for an easy way to have Flash Builder do what it used to do (generate and show my source code).  I was seeing Flash Builder to crazy stuff like rip out the &#8220;viewSourceURL&#8221; tag from my WindowedApplication.  I figure there&#8217;s some sort of setting in the project properties that is set to kill stuff like this when doing a production release but I couldn&#8217;t seem to find it.  Is my hair falling out?</p>
<p><img src="http://multitouchup.com/wp-content/uploads/2012/03/Export-Release-Build.jpg" alt="" title="Export Release Build" width="278" height="129" class="alignright size-full wp-image-1231" />Oh, and yes, I&#8217;m talking about Adobe Air here.  I see everything seem to be in order when doing a Flex browser application.</p>
<p>To generate the view source files I fired up an old version of Flex 3 and when I went to the export wizard it had that old familiar &#8220;Enable view source&#8221;.  I pulled in a more modern compiler but Flex Builder didn&#8217;t seem to get the build right.  But it did generate the viewable source code.  So I took that code and posted it online.  Then I switched back to Flex 4.6 and made the actionscript call to add that source menu:</p>
<p>protected function applicationCompleteHandler(event:FlexEvent):void<br />
{<br />
	ViewSource.addMenuItem(this, &#8220;http://SAMPLE_WEBSITE.ORG/srcview/index.html&#8221;);<br />
}</p>
<p>So while this solution works, I&#8217;m sure there&#8217;s some really simple way to get my old familiar wizard back.  </p>
<p>What am I doing wrong here? </p>
]]></content:encoded>
			<wfw:commentRss>http://multitouchup.com/adding-view-source-to-adobe-air-in-flash-builder-4-5-and-4-6/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Getting the View Navigator Change Event</title>
		<link>http://multitouchup.com/getting-the-view-navigator-change-event/</link>
		<comments>http://multitouchup.com/getting-the-view-navigator-change-event/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 19:25:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://multitouchup.com/?p=1223</guid>
		<description><![CDATA[<a href="http://multitouchup.com/?p=1223"><img src="http://multitouchup.com/wp-content/uploads/2012/02/world.jpg" alt="" title="world" width="250" height="142" class="alignright size-full wp-image-1224" /></a>Maybe you're googling to find the Flex View Navigator change event?  I know I was but I didn't find it.  Here's the quick fix:

You can watch for the length to change like this:
ChangeWatcher.watch(mainNavigator,'length', mainNavigator_lengthChangeHandler, false, true);
Take note that we're using weak reference here.  

Another option that I'm leaning towards is responding to the view navigator's elementAdd and elementRemove events. ]]></description>
			<content:encoded><![CDATA[<p><img src="http://multitouchup.com/wp-content/uploads/2012/02/world.jpg" alt="" title="world" width="250" height="142" class="alignright size-full wp-image-1224" />Maybe you&#8217;re googling to find the Flex View Navigator change event?  I know I was but I didn&#8217;t find it.  Here&#8217;s the quick fix:</p>
<p>You can watch for the length to change like this:<br />
ChangeWatcher.watch(mainNavigator,&#8217;length&#8217;, mainNavigator_lengthChangeHandler, false, true);<br />
Take note that we&#8217;re using weak reference here.  </p>
<p>Another option that I&#8217;m leaning towards is responding to the view navigator&#8217;s elementAdd and elementRemove events.<br />
ViewNavigator id=&#8221;mainNavigator&#8221;<br />
			firstView=&#8221;view.homeScreen.HomeScreenView&#8221;<br />
			elementAdd=&#8221;mainNavigator_elementAddHandler(event)&#8221;<br />
			elementRemove=&#8221;mainNavigator_elementAddHandler(event)&#8221;</p>
<p>Some of these blog posts are just so I can find the answer to the same problem later.  But I hope they help someone else also <img src='http://multitouchup.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Best of luck,<br />
Matt</p>
]]></content:encoded>
			<wfw:commentRss>http://multitouchup.com/getting-the-view-navigator-change-event/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Center A Popup in Flex Mobile after Orientation change</title>
		<link>http://multitouchup.com/center-a-popup-in-flex-mobile-after-orientation-change/</link>
		<comments>http://multitouchup.com/center-a-popup-in-flex-mobile-after-orientation-change/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 23:57:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://multitouchup.com/?p=1206</guid>
		<description><![CDATA[<img src="http://multitouchup.com/wp-content/uploads/2011/12/rotaryPhone.jpg" alt="" title="Phone" width="168" height="126" class="alignright size-full wp-image-1207" />How do you center or re-center a popup in Flex when a user is changing the orientation of the device?  

Maybe a user rotates the device and the view changes from landscape to portrait view and you have a popup that needs to be re-centered.  So what to do . . .

Well, I'm glad you asked.  Basically, you need to listen for the Stage to dispatch a StageOrientationEvent.ORIENTATION_CHANGE  event.  When the orientation does change, you'll need to wait for the view to update (or whatever magic you're doing), give Flex a second to redraw the view by waiting a frame then center the popup.  (PopUpManager.centerPopUp)]]></description>
			<content:encoded><![CDATA[<p><img src="http://multitouchup.com/wp-content/uploads/2011/12/rotaryPhone.jpg" alt="" title="Phone" width="168" height="126" class="alignright size-full wp-image-1207" />How do you center or re-center a popup in Flex when a user is changing the orientation of the device?  </p>
<p>Maybe a user rotates the device and the view changes from landscape to portrait view and you have a popup that needs to be re-centered.  So what to do . . .</p>
<p>Well, I&#8217;m glad you asked.  Basically, you need to listen for the Stage to dispatch a StageOrientationEvent.ORIENTATION_CHANGE  event.  When the orientation does change, you&#8217;ll need to wait for the view to update (or whatever magic you&#8217;re doing), give Flex a second to redraw the view by waiting a frame then center the popup.  (PopUpManager.centerPopUp)</p>
<p>Additionally you could set a flag and wait for the updateDisplaylist method to be called before centering your popup.  </p>
<p>Ok if that wasn&#8217;t clear, maybe a little code would help:</p>
<p>protected function addedToStageHandler(event:Event):void<br />
{</p>
<dd>this.stage.addEventListener(StageOrientationEvent.ORIENTATION_CHANGE, stageOrientation_eventHandler);</dd>
<p>}</p>
<p>protected function showSettingsPopup():void<br />
{</p>
<dd>PopUpManager.addPopUp(settingsPopup, this, true);<br />
	  centerPopup();</dd>
<p>}</p>
<p>protected function stageOrientation_eventHandler(event:StageOrientationEvent):void<br />
{</p>
<dd>if(settingsPopup)<br />
	  {<br />
		  //we call it later so that Flex can layout the app before we center everything.<br />
		  // we could also set a flag and override the update display method.<br />
		  callLater(centerPopup);<br />
	  }</dd>
<p>}</p>
<p>protected function centerPopup():void<br />
{</p>
<dd>PopUpManager.centerPopUp(settingsPopup);</dd>
<p>}</p>
<p>So in this code we&#8217;re using a popup called &#8216;settingsPopup&#8217;.  You&#8217;ll need to make your own popup and have a reference to it in order to center it.  </p>
<p>Best of luck,<br />
Matt</p>
]]></content:encoded>
			<wfw:commentRss>http://multitouchup.com/center-a-popup-in-flex-mobile-after-orientation-change/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blinking Text in Flex 4.6 &#8211; Stage Text</title>
		<link>http://multitouchup.com/blinking-text-in-flex-4-6-stage-text/</link>
		<comments>http://multitouchup.com/blinking-text-in-flex-4-6-stage-text/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 04:51:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://multitouchup.com/?p=1194</guid>
		<description><![CDATA[<a href="http://multitouchup.com/?p=1194"><img src="http://multitouchup.com/wp-content/uploads/2011/12/magicText-300x225.jpg" alt="" title="MagicText" width="300" height="225" class="alignright size-medium wp-image-1195" /></a>I'm in the middle of a mobile project and just switched from Flex 4.5 to Flex 4.6.  No big deal right?  Night before a small deadline and I figure I better put it on an Android device and make sure everything is still looking good.  

Whoops, for some reason the TextArea that I was using had text that was disappearing.  It was really odd.  I'd push a view and the textarea text would show for a second and then disappear.  

Then oddly come back when clicking on stuff.  What is this?  Black magic?  Is this the work of the devil? 

Nope, this is the work of new Stage Text feature in Flex 4.6.  ]]></description>
			<content:encoded><![CDATA[<p><img src="http://multitouchup.com/wp-content/uploads/2011/12/magicText-300x225.jpg" alt="" title="MagicText" width="300" height="225" class="alignright size-medium wp-image-1195" />I&#8217;m in the middle of a mobile project and just switched from Flex 4.5 to Flex 4.6.  No big deal right?  Night before a small deadline and I figure I better put it on an Android device and make sure everything is still looking good.  </p>
<p>Whoops, for some reason the TextArea that I was using had text that was disappearing.  It was really odd.  I&#8217;d push a view and the textarea text would show for a second and then disappear.  </p>
<p>Then oddly come back when clicking on stuff.  What is this?  Black magic?  Is this the work of the devil? </p>
<p>Nope, this is the work of new Stage Text feature in Flex 4.6.  </p>
<p>Stage Text is super helpful because it allows for the native application to display the text and do cool things like use the native OSs text auto-complete but it&#8217;s tricky.  </p>
<p>Stage Text has many limitations.  For example, It&#8217;s not going to work well in items that scroll.</p>
<h2>Solution</h2>
<p>If you don&#8217;t want to play around with Stage Text or you&#8217;re experiencing blinking / disappearing oddness don&#8217;t stress.  You can just change the skinClass:</p>
<blockquote><p>
skinClass=&#8221;spark.skins.spark.TextAreaSkin&#8221;
</p></blockquote>
<p>Best of luck and hope this helps! </p>
]]></content:encoded>
			<wfw:commentRss>http://multitouchup.com/blinking-text-in-flex-4-6-stage-text/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to remove the welcome screen on Flash Builder</title>
		<link>http://multitouchup.com/how-to-remove-the-welcome-screen-on-flash-builder/</link>
		<comments>http://multitouchup.com/how-to-remove-the-welcome-screen-on-flash-builder/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 20:16:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://multitouchup.com/?p=1183</guid>
		<description><![CDATA[<img src="http://multitouchup.com/wp-content/uploads/2011/12/flash_builder_100x100.png" alt="" title="flash_builder_100x100" width="100" height="100" class="alignright size-full wp-image-1190" />I just installed Flash Builder 4.6.  It took me a second to find out how to get rid of this Adobe Welcome screen popup up each time I started Flash Builder.  Just so you know it's under Preference -> Flash Builder -> 'Show welcome screen on launch'  Here's a screenshot:]]></description>
			<content:encoded><![CDATA[<p><img src="http://multitouchup.com/wp-content/uploads/2011/12/flash_builder_100x100.png" alt="" title="flash_builder_100x100" width="100" height="100" class="alignright size-full wp-image-1190" />I just installed Flash Builder 4.6.  You can get it <a href="https://www.adobe.com/cfusion/tdrc/index.cfm?product=flash_builder">here</a>  You&#8217;ll need to uninstall you&#8217;re current version of Flash Builder and then install this one.  If you have this app as part of a bundle like Adobe Web Premium, you can click the &#8216;Trial&#8217; mode and the app will auto-detect the serial number from the other products and plug it in.  </p>
<p>It took me a second to find out how to get rid of this Adobe Welcome screen popup up each time I started Flash Builder.  Just so you know it&#8217;s under Preference -> Flash Builder -> &#8216;Show welcome screen on launch&#8217;</p>
<p>Here&#8217;s a screenshot:</p>
<p><img src="http://multitouchup.com/wp-content/uploads/2011/12/Preferences.png" alt="" title="Preferences" width="613" height="507" class="size-full wp-image-1184" /></p>
<p>Yeah,  I&#8217;m mostly posting this so that I can personally find it the next time I forget. </p>
]]></content:encoded>
			<wfw:commentRss>http://multitouchup.com/how-to-remove-the-welcome-screen-on-flash-builder/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adobe&#8217;s PR Ninjas</title>
		<link>http://multitouchup.com/adobes-pr-ninjas/</link>
		<comments>http://multitouchup.com/adobes-pr-ninjas/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 06:39:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://multitouchup.com/?p=1169</guid>
		<description><![CDATA[<p><img src="http://multitouchup.com/wp-content/uploads/2011/11/ninja-300x224.jpg" alt="" title="ninja-300x224" width="300" height="224" class="alignright size-full wp-image-1174" />Yesterday, Adobe issued layoffs.  Today, Adobe made a stunning announcement, their new mobile strategy will no longer include flash for the mobile browser.  </p>
<p>Here is their wording:</p>
<blockquote><p>We will no&#8230;</p></blockquote>]]></description>
			<content:encoded><![CDATA[<p><img src="http://multitouchup.com/wp-content/uploads/2011/11/ninja-300x224.jpg" alt="" title="ninja-300x224" width="300" height="224" class="alignright size-full wp-image-1174" />Yesterday, Adobe issued layoffs.  Today, Adobe made a stunning announcement, their new mobile strategy will no longer include flash for the mobile browser.  </p>
<p>Here is their wording:</p>
<blockquote><p>We will no longer continue to develop Flash Player in the browser to work with new mobile device configurations (chipset, browser, OS version, etc.) following the upcoming release of Flash Player 11.1 for Android and BlackBerry PlayBook</p></blockquote>
<p> <a href="http://blogs.adobe.com/conversations/2011/11/flash-focus.html">link</a></p>
<p>This follows, what I would describe as, 2 years of the worst PR given to any software or platform that I can remember.  </p>
<p>My question to Adobe is:<br />
How would you think this little announcement would be received by the already bitter tech community?</p>
<p>Here&#8217;s a few headlines:<br />
 &#8211; <a href="http://blogs.computerworld.com/19239/apples_steve_jobs_vindicated_as_adobe_kills_mobile_flash?source=rss_blogs">Apple&#8217;s Steve Jobs vindicated as Adobe kills mobile Flash‎</a><br />
 &#8211; <a href="http://www.usatoday.com/tech/news/story/2011-11-09/mark-smith-adobe-flash-mobile/51135466/1">Adobe kills Flash on mobile devices</a><br />
 &#8211; <a href="http://www.mercurynews.com/bay-area-news/ci_19297016&#038;rct=j&#038;sa=X&#038;ei=AWa7TuaABMbniALvpIjZAQ&#038;ved=0CDAQ-AsoATAA&#038;q=Adobe+kills+flash&#038;usg=AFQjCNEs0Uq30vexj9SHWPOYT_ukLhRuxA">Adobe kills Flash Player for mobile browsers</a><br />
 &#8211; <a href="http://techcrunch.com/2011/11/09/why-adobe-failed/">Why Adobe Failed and Where Startups Can Swoop In</a></p>
<p>When Adobe makes strategic decisions like this, I&#8217;m guessing they do it for the following reasons:<br />
1.  Reassure their investors and<br />
2.  Increase share prices  </p>
<p>It is my opinion that Adobe&#8217;s PR ninjas failed at both of these tasks today.  </p>
<p><img src="http://multitouchup.com/wp-content/uploads/2011/11/Adobe-Systems-Incorporated-Stock-Chart-ADBE-Interactive-Chart-Yahoo-Finance-1-300x180.png" alt="" title="Adobe Systems Incorporated Stock Chart | ADBE Interactive Chart - Yahoo! Finance-1" width="300" height="180" class="aligncenter size-medium wp-image-1173" /></p>
]]></content:encoded>
			<wfw:commentRss>http://multitouchup.com/adobes-pr-ninjas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Updates to Flash Player 11 and AIR 3</title>
		<link>http://multitouchup.com/adobe-updates-to-flash-player-11-and-air-3/</link>
		<comments>http://multitouchup.com/adobe-updates-to-flash-player-11-and-air-3/#comments</comments>
		<pubDate>Sat, 08 Oct 2011 05:48:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://multitouchup.com/?p=1152</guid>
		<description><![CDATA[<img src="http://multitouchup.com/wp-content/uploads/2011/10/3dMobile.jpg" alt="" title="3dMobile" width="320" height="285" class="alignright size-full wp-image-1155" />Adobe is now shipping Flash Player 11 and the AIR 3 runtimes.  

Adobe Flash Player 11 has a new API called Stage 3D.  Now Flash has had 3D for a while.  Projects like <a href="http://away3d.com/">Away 3D</a> and <a href="http://blog.papervision3d.org/">Papervision 3D</a> having been doing 3D within the Flash player for years.  However these projects relied on computer’s CPU to do the 100% of the 3D rendering.

With Flash Player 11 projects like these can now take advantage the GPU's 3D rendering capabilities.  This allows for 3D performance on the flash platform with an order of magnitude greater performance and complexity.  

Adobe AIR 3 has added a fun new feature called ANE.  ANE stands for Adobe Native Extensions and allows users to used the Adobe Air runtime in conjunction with natively executing code.  This allows Adobe AIR to do fun things like integrate with phones that have NFC capabilities or view compass data (these aren't available by default to Adobe AIR) ]]></description>
			<content:encoded><![CDATA[<p><img src="http://multitouchup.com/wp-content/uploads/2011/10/3dMobile.jpg" alt="" style="border: medium groove white;"  title="3dMobile" width="320" height="285" class="alignright size-full wp-image-1155" />Adobe is now shipping Flash Player 11 and the AIR 3 runtimes.  Hop on over to check them out:</p>
<p><a href="http://get.adobe.com/flashplayer/">Flash Player 11</a></p>
<p><a href="http://get.adobe.com/air/">AIR 3</a></p>
<p>There are tons of new feature in each but I&#8217;d like to highlight one on each runtime.</p>
<p>Adobe Flash Player 11 has a new API called Stage 3D.  Now Flash has had 3D for a while.  Projects like <a href="http://away3d.com/">Away 3D</a> and <a href="http://blog.papervision3d.org/">Papervision 3D</a> having been doing 3D within the Flash player for years.  However these projects relied on computer’s CPU to do the 100% of the 3D rendering.</p>
<p>With Flash Player 11 projects like these can now take advantage the GPU&#8217;s 3D rendering capabilities.  This allows for 3D performance on the flash platform with an order of magnitude greater performance and complexity.  </p>
<p>OK,  here&#8217;s a fun multitouch demo:</p>
<p><object width="560" height="315"><param name="movie" value="http://www.youtube.com/v/jbF6Tvv2aCo?version=3&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/jbF6Tvv2aCo?version=3&amp;hl=en_US" type="application/x-shockwave-flash" width="560" height="315" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Adobe AIR 3 has added a fun new feature called ANE.  ANE stands for Adobe Native Extensions and allows users to used the Adobe Air runtime in conjunction with natively executing code.  This allows Adobe AIR to do fun things like integrate with phones that have NFC capabilities or view compass data (these aren&#8217;t available by default to Adobe AIR) </p>
<p><object width="560" height="315"><param name="movie" value="http://www.youtube.com/v/E9VMPM5RfQI?version=3&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/E9VMPM5RfQI?version=3&amp;hl=en_US" type="application/x-shockwave-flash" width="560" height="315" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Here&#8217;s a round up of helpful links to follow up with up with:</p>
<p><a href="http://blogs.adobe.com/flashplatform/2011/09/announcing-flash-player-11-and-air-3.html">List of features</a><br />
<a href="http://www.adobe.com/devnet/flashplayer/articles/how-stage3d-works.html">Stage 3D devnet article</a><br />
<a href="http://www.adobe.com/devnet/air/articles/developing-native-extensions-air.html">Developing native extensions for Adobe AIR</a><br />
<a href="http://extensionsforair.com/">Extensions for AIR</a><br />
<a href="http://www.businesswire.com/news/home/20110920007363/en/Adobe-Enables-3D-Games-Flash-Player-11">Press Release About Flash 11 and AIR 3</a><br />
<a href="http://www.adobe.com/special/products/air/sdk/">You&#8217;ll also need the new AIR 3 SDK</a></p>
]]></content:encoded>
			<wfw:commentRss>http://multitouchup.com/adobe-updates-to-flash-player-11-and-air-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oh Yeah, Thank You Flex Team</title>
		<link>http://multitouchup.com/oh-yeah-thank-you-flex-team/</link>
		<comments>http://multitouchup.com/oh-yeah-thank-you-flex-team/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 23:00:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://multitouchup.com/?p=1127</guid>
		<description><![CDATA[<img src="http://multitouchup.com/wp-content/uploads/2011/09/nerdThanks.jpg" alt="" title="nerdThanks" width="300" height="202" class="alignright size-full wp-image-1133" />I'm a Flex developer.  I get paid to use the Flex SDK to build rich internet applications.  I woke up feeling guilty about how much our community complains about the Flex framework.  </p>
<p>Yes there are issues with Flex and we complain because we love it and want it to be perfect.  And I don't think we focus on that last part nearly as much as we should.  Many of us love the Flex framework.  </p>

<p>I'm posting a picture of my family below because the Flex team should know that their work has directly affected my ability to provide for them.  

Flex work has paid for a lot of trips to the grocery store.  Flex has paid for a lot of diapers.  Adobe Flex has paid for a number of amazing vacations.  

We're finally looking for a home and we've been able to save up a sizable down payment by working on Adobe Flex projects.  When I say I owe the Adobe Flex team a big thanks you, I'm not being sarcastic or exaggerating.   </p>]]></description>
			<content:encoded><![CDATA[<p><img src="http://multitouchup.com/wp-content/uploads/2011/09/nerdThanks_large1-244x300.jpg" alt="" title="nerdThanks_large" width="244" height="300" class="alignright size-medium wp-image-1136" />
<p>I&#8217;m a Flex developer.  I get paid to use the Flex SDK to build rich internet applications.  I woke up feeling guilty about how much our community complains about the Flex framework.  </p>
<p>Yes there are issues with Flex and we complain because we love it and want it to be perfect.  And I don&#8217;t think we focus on that last part nearly as much as we should.  Many of us love the Flex framework.  </p>
<p>I&#8217;m posting a picture of my family below because the Flex team should know that their work has directly affected my ability to provide for them.  </p>
<p>Flex work has paid for a lot of trips to the grocery store.  Flex has paid for a lot of diapers.  Adobe Flex has paid for a number of amazing vacations.  Flex has enabled me to meet some of the most amazing developers and friends that I have in my life.  </p>
<p>We&#8217;re finally looking for a home and we&#8217;ve been able to save up a sizable down payment, mostly, from working on Adobe Flex projects.  When I say I owe the Adobe Flex team a big thanks you, I&#8217;m not being sarcastic or exaggerating.   </p>
<p>My little family on our summer vacation:</p>
<p><img src="http://multitouchup.com/wp-content/uploads/2011/09/family-300x199.jpg" alt="" title="family" width="300" height="199" class="aligncenter size-medium wp-image-1131" /></p>
<p>Now I know that the Flex team gets paid, but I&#8217;ve noticed many of them going above and beyond their 9-5.  I&#8217;ve seen team members hanging out online responding to FlexCoder mailing list in the middle of the night.  I&#8217;ve seen team members showing up at user group meetings to &#8216;learn&#8217; about some Flex 101 topic.  Just generally being supportive of the Flex community. </p>
<p>I simply want to reminding the Flex team that their work makes a direct difference in many families like mine.  Thanks and keep up the good work!  </p>
]]></content:encoded>
			<wfw:commentRss>http://multitouchup.com/oh-yeah-thank-you-flex-team/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Speaking in Seattle about Multitouch</title>
		<link>http://multitouchup.com/speaking-in-seattle-about-multitouch/</link>
		<comments>http://multitouchup.com/speaking-in-seattle-about-multitouch/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 18:09:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://multitouchup.com/?p=1115</guid>
		<description><![CDATA[<img src="http://multitouchup.com/wp-content/uploads/2011/02/small_med_large_300_263.png" style="border: medium groove white;" alt="" title="Multitouch - small_med_large" width="300" height="263" class="alignright size-full wp-image-967" />I’m really excited to announce that I will be speaking at the Seattle Flex Users Group on Thursday, September 8th.  

The title of my talk is named “Multitouch. Small, Medium and Large”.

In Seattle, I will be going over the basics of developing multitouch applications and as the title suggests, we are going to look at using that multitouch development skill set across a large variety of screen sizes.  I plan to have multiple examples running on a variety of devices.

The Seattle Flex user group is fantastic.   I've spoken in Seattle before and this is a really fun group to hang out with.  If you are in the area I highly recommend you become a regular SeaFlex user group attendee.  Here is a link to their website: <a href="http://seaflex.groups.adobe.com/">http://seaflex.groups.adobe.com/</a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://multitouchup.com/wp-content/uploads/2011/02/small_med_large_300_263.png" style="border: medium groove white;" alt="" title="Multitouch - small_med_large" width="300" height="263" class="alignright size-full wp-image-967" />I’m really excited to announce that I will be speaking at the Seattle Flex Users Group on Thursday, September 8th.  </p>
<p>The title of my talk is named “Multitouch. Small, Medium and Large”.</p>
<p>In Seattle, I will be going over the basics of developing multitouch applications and as the title suggests, we are going to look at using that multitouch development skill set across a large variety of screen sizes.  I plan to have multiple examples running on a variety of devices.</p>
<p>Lastly, we are going to look at a few valuable tools, frameworks and components that will speed up your multitouch application development.</p>
<p>The Seattle Flex user group is fantastic.   I&#8217;ve spoken in Seattle before and this is a really fun group to hang out with.  If you are in the area I highly recommend you become a regular SeaFlex user group attendee.  Here is a link to their website: <a href="http://seaflex.groups.adobe.com/">http://seaflex.groups.adobe.com/</a></p>
<p>If you are interested in multitouch development (from mobile to kiosk), please make sure to earmark some time to join us.</p>
<p>Thanks!</p>
<p>(wallpaper of presentation title image)<br />
Multitouch. Small, Medium and Large (<a href="http://multitouchup.com/wp-content/uploads/2011/02/Multitouch_small_med_large_1080p.jpg">1080p</a> or <a href="http://multitouchup.com/wp-content/uploads/2011/02/Multitouch_small_med_large_1024_768.jpg">1024×768</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://multitouchup.com/speaking-in-seattle-about-multitouch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video up on Zaa.tv</title>
		<link>http://multitouchup.com/video-up-on-zaa-tv/</link>
		<comments>http://multitouchup.com/video-up-on-zaa-tv/#comments</comments>
		<pubDate>Mon, 04 Jul 2011 15:00:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://multitouchup.com/?p=1095</guid>
		<description><![CDATA[<a href="http://multitouchup.com/?p=1095"><img src="http://multitouchup.com/wp-content/uploads/2011/06/360_Flex_talk-300x225.jpg" alt="" title="360_Flex_talk" width="300" height="225" class="alignright size-medium wp-image-1096" /></a>I was lucky to have had the opportunity to speak at <a href="http://www.360flex.com/">360&#124;Flex</a> back in April.  Since that time, <a href="http://zaa.tv/">Zaa.tv</a> has regularly been releasing great recordings of each presentation.  

Today my video has been posted.  So take the hop, skip and a jump over to their site to check it out: 

Personally I love to learn via video tutorials.  And there's tons of great presentations on this site.  So grab some popcorn and be sure to explore all of the great content on Zaa.tv.  You will not be disappointed.   

Thanks for checking it out!]]></description>
			<content:encoded><![CDATA[<p><img src="http://multitouchup.com/wp-content/uploads/2011/06/360_Flex_talk-300x225.jpg" style="border: medium groove white;" alt="" title="360_Flex_talk" width="300" height="225" class="alignright size-medium wp-image-1096" />I was lucky to have had the opportunity to speak at <a href="http://www.360flex.com/">360|Flex</a> back in April.  Since that time, <a href="http://zaa.tv/">Zaa.tv</a> has regularly been releasing great recordings of each presentation.  </p>
<p>Today my video has been posted.  So take the hop, skip and a jump over to their site to check it out:<br />
<a href="http://zaa.tv/2011/07/360flex-denver-2011%E2%80%93multitouch-small-medium-large">Multitouch &#8211; Small, Medium and Large on Zaa.tv</a></p>
<p>Personally I love to learn via video tutorials.  And there&#8217;s tons of great presentations on this site.  So grab some popcorn and be sure to explore all of the great content on Zaa.tv.  You will not be disappointed.   </p>
<p>Here&#8217;s a link to my slides from the presentation:<br />
<a href="http://multitouchup.com/presos/360/Multitouch-Small%20Medium%20and%20Large.htm">HTML slides</a><br />
<a href="http://multitouchup.com/presos/360/Multitouch-Small%20Medium%20and%20Large.pdf">PDF slides</a></p>
<p>All of the code and more demonstration code can be found at GitHub:<br />
<a href="https://github.com/mlegrand/360-Flex-Presentation-Material-">Demo Code on GitHub</a></p>
<p>And a link to the wallpaper of presentation title image:<br />
Multitouch. Small, Medium and Large (<a href="http://multitouchup.com/wp-content/uploads/2011/02/Multitouch_small_med_large_1080p.jpg">1080p</a> or <a href="http://multitouchup.com/wp-content/uploads/2011/02/Multitouch_small_med_large_1024_768.jpg">1024×768</a>)</p>
<p>If you have constructive feedback on the presentation feel free to drop me a comment below.  </p>
<p>Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://multitouchup.com/video-up-on-zaa-tv/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

