<?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>Mon, 19 Dec 2011 23:57:58 +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>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>1</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>1</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>
		<item>
		<title>Flex 4.5.1 SDK Now Available and a Few Oddities</title>
		<link>http://multitouchup.com/flex-4-5-1-sdk-now-available-and-a-few-oddities/</link>
		<comments>http://multitouchup.com/flex-4-5-1-sdk-now-available-and-a-few-oddities/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 16:45:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://multitouchup.com/?p=1070</guid>
		<description><![CDATA[<img src="http://multitouchup.com/wp-content/uploads/2011/06/flexOnIOS_300.png" alt="" title="flexOnIOS_300" width="300" height="313" border="0px" class="alignright size-full wp-image-1073" />The new Flash Builder 4.5.1 is available as of today.  Go grab it and update your Flash Builder here:

<a href="http://www.adobe.com/support/flex/downloads_updaters.html#flex4_5">Adobe Flash Builder Update</a>


We've been able to make pure actionscript project into iOS apps for quite sometime.  We were able to do this in the CS5 Flash Professional application back in April of 2010.  Recently, with the release of Flash Builder 4.5, Adobe has made it easy to do a pure ActionScript projects for iOS.  

This update is a bit different.  This update makes it easier for developers to create 'Mobile Flex' applications that target the iOS platform.  You can lean on your Flex know-how and use new components and tool in the mobile Flex framework to build applications using tags like the 'ViewNavigatorApplication' or the 'TabbedViewNavigatorApplication'. ]]></description>
			<content:encoded><![CDATA[<p><img src="http://multitouchup.com/wp-content/uploads/2011/06/flexOnIOS_300.png" alt="" title="flexOnIOS_300" width="300" height="313" border="0px" class="alignright size-full wp-image-1073" />The new Flash Builder 4.5.1 is available as of today.  Go grab it and update your Flash Builder here:</p>
<p><a href="http://www.adobe.com/support/flex/downloads_updaters.html#flex4_5">Adobe Flash Builder Update</a></p>
<p>We&#8217;ve been able to make pure actionscript project into iOS apps for quite sometime.  We were able to do this in the CS5 Flash Professional application back in April of 2010.  Recently, with the release of Flash Builder 4.5, Adobe has made it easy to do a pure ActionScript projects for iOS.  </p>
<p>This update is a bit different.  This update makes it easier for developers to create &#8216;Mobile Flex&#8217; applications that target the iOS platform.  You can lean on your Flex know-how and use new components and tool in the mobile Flex framework to build applications using tags like the &#8216;ViewNavigatorApplication&#8217; or the &#8216;TabbedViewNavigatorApplication&#8217;.  </p>
<p><img src="http://multitouchup.com/wp-content/uploads/2011/06/New-Flex-Mobile-Project-1.jpg" alt="" title="New Flex Mobile Project-1" width="257" height="173" class="alignleft size-full wp-image-1072" /></p>
<p>One major oddity is that all of this targets AIR 2.6.  But didn&#8217;t Adobe just release AIR 2.7 a few days ago?  </p>
<p>The answer is, well yes, but I&#8217;m guessing that there is a fair amount of testing, QA, and review that requires the code to be locked down for weeks.  That might be the reason that this release targets AIR 2.6.  But that&#8217;s just a guess, I&#8217;d love to hear more details from someone who knows.  </p>
<p>But the Adobe marketing department is making a big deal about <a href="http://blogs.adobe.com/flashplayer/2011/06/adobe-AIR-2-7-now-available-ios-apps-4x-faster.html">AIR 2.7 being 4x faster</a>, and I think I want that.  </p>
<p>OK, that&#8217;s a fair request.  here&#8217;s the link to the <a href="http://www.adobe.com/products/air/sdk/">AIR 2.7 sdk</a>  </p>
<p>My suggestion is that you taget that sdk if you are going to be building Flex application for the iOS platform.  Seems like people have been very pleased with the increased performance on iOS with this update.  </p>
<p>The next major oddity is that Blackberry Playbook still requires AIR 2.5.  And while I know Adobe doesn&#8217;t have access to what software Blackberry chooses for it&#8217;s devices, it still feels odd that the Adobe Flash Builder has them listed as one of the three major devices to target and yet requires a developer to target an older SDK.  And the process isn&#8217;t dead simple. </p>
<p>In order to get your application deployed to the Playbook you need to do a bit of monkey patching.  Here&#8217;s a quick link to an &#8216;unsupported&#8217; work around:<br />
<a href="http://blogs.adobe.com/jasonsj/2011/05/flex45_air25_playbook.html">http://blogs.adobe.com/jasonsj/2011/05/flex45_air25_playbook.html</a></p>
<p>Something doesn&#8217;t feel all that smooth here.  Am I the only one that feels like Adobe is having difficulties getting the timing of all of their pieces together?  </p>
<p>Just to review:  the AIR 2.7 sdk comes out then Flash Builder gets an update that targets AIR 2.6 and you still have to monkey patch your project if you want to target the Blackberry Playbook because it targets AIR 2.5.  </p>
<p>Does this feel a bit out of whack to anyone else? </p>
]]></content:encoded>
			<wfw:commentRss>http://multitouchup.com/flex-4-5-1-sdk-now-available-and-a-few-oddities/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Speaking in Michigan</title>
		<link>http://multitouchup.com/speaking-in-michigan/</link>
		<comments>http://multitouchup.com/speaking-in-michigan/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 15:30:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://multitouchup.com/?p=1060</guid>
		<description><![CDATA[<p><a href="http://multitouchup.com/?p=1060"><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" /></a>I’m really excited to announce that I will be speaking at the Michigan Flex Users Group in East Lansing, MI on July 21st.</p>
<p>The title of my talk is named “Multitouch. Small, Medium and Large”.</p>
<p>In East Lansing, 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.</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>If you are interested in multitouch development (from mobile to kiosk), please make sure to earmark some time to join us. </p>]]></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 Michigan Flex Users Group in East Lansing, MI on July 21st.</p>
<p>The title of my talk is named “Multitouch. Small, Medium and Large”.</p>
<p>In East Lansing, 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.</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 Michigan Flex user group is fantastic.  The group meets at Michigan State University and Nick Kwiatkowski has been doing a great job running this user group for as long as I can remember.  (Flex 2 around 2006 maybe?)  Here is a link to their website: http://www.theflexgroup.org/</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>(wallpaper of presentation title image)</p>
<p>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-michigan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

