<?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>Mike Orth - Booya!</title>
	<atom:link href="http://mikeorth.com/feed" rel="self" type="application/rss+xml" />
	<link>http://mikeorth.com</link>
	<description>Flex, Actionscript</description>
	<lastBuildDate>Fri, 06 Aug 2010 15:03:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Slider Increment &#8211; snapInterval</title>
		<link>http://mikeorth.com/2010/slider-increment-snapinterval</link>
		<comments>http://mikeorth.com/2010/slider-increment-snapinterval#comments</comments>
		<pubDate>Fri, 06 Aug 2010 15:03:43 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[quicktips]]></category>
		<category><![CDATA[slider]]></category>

		<guid isPermaLink="false">http://mikeorth.com/?p=55</guid>
		<description><![CDATA[For future reference, trying to remember what the property name was for the interval or step size for a slider.  The property is named &#8220;snapInterval&#8221;
]]></description>
			<content:encoded><![CDATA[<p>For future reference, trying to remember what the property name was for the interval or step size for a slider.  The property is named &#8220;snapInterval&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://mikeorth.com/2010/slider-increment-snapinterval/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Targeting the Right Component for Transitions</title>
		<link>http://mikeorth.com/2010/targeting-the-right-component-for-transitions</link>
		<comments>http://mikeorth.com/2010/targeting-the-right-component-for-transitions#comments</comments>
		<pubDate>Thu, 15 Jul 2010 19:43:27 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Visual]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[states]]></category>
		<category><![CDATA[transitions]]></category>

		<guid isPermaLink="false">http://mikeorth.com/?p=37</guid>
		<description><![CDATA[When doing any state transitions, you have to be sure to specify the intended target.  For instance, recently I was debugging some client code to see why a fade wasn&#8217;t working.  It turned out that the target was set to the parent group instead of each specific component.
&#160; &#160; &#60;s:transitions&#62;
&#160; &#160; &#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>When doing any state transitions, you have to be sure to specify the intended target.  For instance, recently I was debugging some client code to see why a fade wasn&#8217;t working.  It turned out that the target was set to the parent group instead of each specific component.</p>
<div class="codecolorer-container mxml default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="mxml codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&nbsp; &nbsp; <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:transitions</span><span style="color: #7400FF;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:Transition</span> fromState=<span style="color: #ff0000;">&quot;*&quot;</span> toState=<span style="color: #ff0000;">&quot;*&quot;</span><span style="color: #7400FF;">&gt;</span></span><br />
<br />
<span style="color: #000000;"><span style="color: #808080; font-style: italic;">&lt;!--&nbsp; &nbsp; INCORRECT way of doing it: </span><br />
<span style="color: #000000;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Don't target the parent container--&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:Fade</span> target=<span style="color: #ff0000;">&quot;{[content]}&quot;</span><span style="color: #7400FF;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;"><span style="color: #808080; font-style: italic;">&lt;!--CORRECT: target each specific component--&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;"><span style="color: #7400FF;">&lt;s:Fade</span> targets=<span style="color: #ff0000;">&quot;{[pageOne, pageTwo]}&quot;</span><span style="color: #7400FF;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:Transition</span><span style="color: #7400FF;">&gt;</span></span><br />
&nbsp; &nbsp; <span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:transitions</span><span style="color: #7400FF;">&gt;</span></span><br />
<br />
<span style="color: #000000;"><span style="color: #7400FF;">&lt;s:Group</span> id=<span style="color: #ff0000;">&quot;content&quot;</span><span style="color: #7400FF;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;"><span style="color: #7400FF;">&lt;local:PageOne</span> id=<span style="color: #ff0000;">&quot;pageOne&quot;</span> includeIn=<span style="color: #ff0000;">&quot;one&quot;</span><span style="color: #7400FF;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;"><span style="color: #7400FF;">&lt;local:PageTwo</span> id=<span style="color: #ff0000;">&quot;pageTwo&quot;</span> includeIn=<span style="color: #ff0000;">&quot;two&quot;</span><span style="color: #7400FF;">/&gt;</span></span><br />
<span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:Group</span><span style="color: #7400FF;">&gt;</span></span></div></div>
<p>In this case, you need to target <b>pageOne</b> and <b>pageTwo</b>, NOT <b>content</b>.</p>
]]></content:encoded>
			<wfw:commentRss>http://mikeorth.com/2010/targeting-the-right-component-for-transitions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex Formatter</title>
		<link>http://mikeorth.com/2010/flex-formatter</link>
		<comments>http://mikeorth.com/2010/flex-formatter#comments</comments>
		<pubDate>Thu, 08 Jul 2010 21:00:25 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://mikeorth.com/?p=35</guid>
		<description><![CDATA[After moving from projects that religiously used FlexFormatter to one that didn&#8217;t, I realized just how nice this plugin is.  If by chance you haven&#8217;t heard of it, FlexFormatter is an eclipse plugin that will format spaces, tabs, declarations, reorder properties &#038; functions, indent, and lots more.
To install, use the update site http://flexformatter.googlecode.com/svn/trunk/FlexFormatter/FlexPrettyPrintCommandUpdateSite.
]]></description>
			<content:encoded><![CDATA[<p>After moving from projects that religiously used FlexFormatter to one that didn&#8217;t, I realized just how nice this plugin is.  If by chance you haven&#8217;t heard of it, FlexFormatter is an eclipse plugin that will format spaces, tabs, declarations, reorder properties &#038; functions, indent, and lots more.</p>
<p>To install, use the update site http://flexformatter.googlecode.com/svn/trunk/FlexFormatter/FlexPrettyPrintCommandUpdateSite.</p>
]]></content:encoded>
			<wfw:commentRss>http://mikeorth.com/2010/flex-formatter/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MikeOrthLib updated</title>
		<link>http://mikeorth.com/2010/mikeorthlib-updated</link>
		<comments>http://mikeorth.com/2010/mikeorthlib-updated#comments</comments>
		<pubDate>Wed, 07 Jul 2010 21:55:00 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://mikeorth.com/?p=33</guid>
		<description><![CDATA[I added a lot of new custom Flex components to my library, MikeOrthLib.  It includes a PagedDataGrid control, some handy popup base classes, and other utility components.

Check out the example application (work in progress).
Visit the project home page.
]]></description>
			<content:encoded><![CDATA[<p>I added a lot of new custom Flex components to my library, <a href="http://code.google.com/p/mikeorthlib/">MikeOrthLib</a>.  It includes a PagedDataGrid control, some handy popup base classes, and other utility components.</p>
<p><a href="http://mikeorth.com/demos/mikeorthlib/Samples.html"><br />
Check out the example application</a> (work in progress).</p>
<p><a href="http://code.google.com/p/mikeorthlib/">Visit the project home page.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mikeorth.com/2010/mikeorthlib-updated/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Increase Memory in Flash Builder / Eclipse for Mac OS</title>
		<link>http://mikeorth.com/2010/28</link>
		<comments>http://mikeorth.com/2010/28#comments</comments>
		<pubDate>Fri, 07 May 2010 16:15:39 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[flash builder]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[quicktips]]></category>

		<guid isPermaLink="false">http://mikeorth.com/?p=28</guid>
		<description><![CDATA[If you ever get the eclipse &#8220;Out of Memory&#8221; error, then you need to increase the default memory size.  It&#8217;s relatively easy, but you have to know where to look.
In your eclipse install folder, right click on the Eclipse launcher and choose &#8220;Show Package Contents&#8221;.  Then navigate to Contents/MacOS and open eclipse.ini.  [...]]]></description>
			<content:encoded><![CDATA[<p>If you ever get the eclipse &#8220;Out of Memory&#8221; error, then you need to increase the default memory size.  It&#8217;s relatively easy, but you have to know where to look.</p>
<p>In your eclipse install folder, right click on the Eclipse launcher and choose &#8220;Show Package Contents&#8221;.  Then navigate to Contents/MacOS and open eclipse.ini.  Change the min &#038; max values to:</p>
<p>-Xms128m<br />
-Xmx512m</p>
]]></content:encoded>
			<wfw:commentRss>http://mikeorth.com/2010/28/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>360&#124;Flex San Jose</title>
		<link>http://mikeorth.com/2010/360flex-san-jose</link>
		<comments>http://mikeorth.com/2010/360flex-san-jose#comments</comments>
		<pubDate>Tue, 16 Mar 2010 15:42:49 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://mikeorth.com/?p=26</guid>
		<description><![CDATA[I just got back from 360&#124;Flex conference in San Jose.  I got to meet a lot of cool people, as well as put faces to several fellow Universal Mind guys.  At past 360s, you had to search to find someone with a PC because it was overwhelmingly Macs, but I was surprised at [...]]]></description>
			<content:encoded><![CDATA[<p>I just got back from 360|Flex conference in San Jose.  I got to meet a lot of cool people, as well as put faces to several fellow Universal Mind guys.  At past 360s, you had to search to find someone with a PC because it was overwhelmingly Macs, but I was surprised at the amount of PCs I saw this time.  There was also a lot of focus on mobile development.  Looking forward to next time.</p>
]]></content:encoded>
			<wfw:commentRss>http://mikeorth.com/2010/360flex-san-jose/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Playing with 3D Rotation in Flex 4</title>
		<link>http://mikeorth.com/2009/playing-with-3d-rotation-in-flex-4</link>
		<comments>http://mikeorth.com/2009/playing-with-3d-rotation-in-flex-4#comments</comments>
		<pubDate>Tue, 28 Jul 2009 17:53:19 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[AnimateFilter]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[Flex 4]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[Rotate]]></category>
		<category><![CDATA[Rotate3D]]></category>
		<category><![CDATA[Rotation]]></category>

		<guid isPermaLink="false">http://mikeorth.com/?p=20</guid>
		<description><![CDATA[I wanted to experiment with the new 3D features in Flex 4 Gumbo, so I made this simple rotate demo.  Your mouse controls the rotation of the paw.  I used the new functionality of
AnimateFilter
&#038;
SimpleMotionPath
for the &#8216;info&#8217; button effects and when clicking the paw.  Rather than use the Rotate3D effect, I am just [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to experiment with the new 3D features in Flex 4 Gumbo, so I made this simple rotate demo.  Your mouse controls the rotation of the paw.  I used the new functionality of</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">AnimateFilter</div></div>
<p>&#038;</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">SimpleMotionPath</div></div>
<p>for the &#8216;info&#8217; button effects and when clicking the paw.  Rather than use the Rotate3D effect, I am just setting the rotation properties on MouseMove.</p>
<p><a href="http://mikeorth.com/demos/paw3d/main.html">Click for demo</a></p>
<p>
<a href="http://mikeorth.com/demos/paw3d/main.html"><img src="http://mikeorth.com/images/blog/pawObey.png" alt="3d Paw Logo" /></a><br />
<br />
This was done for my good friends at <a href="http://cfbgaming.com">CFBgaming.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://mikeorth.com/2009/playing-with-3d-rotation-in-flex-4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skinning Flex 4 slides, Uber-Basic Example Button Skin</title>
		<link>http://mikeorth.com/2009/skinning-flex-4-slides-uber-basic-example-button-skin</link>
		<comments>http://mikeorth.com/2009/skinning-flex-4-slides-uber-basic-example-button-skin#comments</comments>
		<pubDate>Wed, 01 Jul 2009 20:49:40 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Skinning]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Skin]]></category>
		<category><![CDATA[Spark]]></category>

		<guid isPermaLink="false">http://mikeorth.com/?p=19</guid>
		<description><![CDATA[Here are my slides from Flex Flash Camp along with an uber-basic example button skin that shows a quick breakdown of a Spark Skin.  Great for those who haven&#8217;t had time yet to really peer into Flex 4 skins.  Look for more advanced skinning topics soon.
Flex 4 Skinning &#8211; Nashville Flex Camp
View more [...]]]></description>
			<content:encoded><![CDATA[<p>Here are my slides from Flex Flash Camp along with an uber-basic example button skin that shows a quick breakdown of a Spark Skin.  Great for those who haven&#8217;t had time yet to really peer into Flex 4 skins.  Look for more advanced skinning topics soon.</p>
<div style="width:425px;text-align:left" id="__ss_1670360"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/OrthATG/flex-4-skinning-nashville-flex-camp" title="Flex 4 Skinning - Nashville Flex Camp">Flex 4 Skinning &#8211; Nashville Flex Camp</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=skinningflexcamp-090701151105-phpapp01&#038;stripped_title=flex-4-skinning-nashville-flex-camp" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=skinningflexcamp-090701151105-phpapp01&#038;stripped_title=flex-4-skinning-nashville-flex-camp" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">documents</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/OrthATG">Mike Orth</a>.</div>
</div>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;<br />
&lt;!--<br />
&nbsp; &nbsp; &nbsp;UBER-BASIC BUTTON SKIN EXAMPLE<br />
&nbsp; &nbsp; &nbsp; &nbsp;Demonstates:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;- States<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;- FXG Graphics<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;- Skin Parts &nbsp;<br />
&nbsp; &nbsp; &nbsp;Mike Orth 2009<br />
--&gt;<br />
&lt;s:Skin<br />
&nbsp; &nbsp; xmlns:fx=&quot;http://ns.adobe.com/mxml/2009&quot; <br />
&nbsp; &nbsp; xmlns:s=&quot;library://ns.adobe.com/flex/spark&quot; <br />
&nbsp; &nbsp; xmlns:mx=&quot;library://ns.adobe.com/flex/halo&quot; <br />
&nbsp; &nbsp; &gt;<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; &lt;fx:Metadata&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; [HostComponent(&quot;spark.components.Button&quot;)]<br />
&nbsp; &nbsp; &lt;/fx:Metadata&gt;<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; &lt;!--SKIN STATES--&gt;<br />
&nbsp; &nbsp; &lt;s:states&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;mx:State name=&quot;up&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;mx:State name=&quot;down&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;mx:State name=&quot;over&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;mx:State name=&quot;disabled&quot;/&gt;<br />
&nbsp; &nbsp; &lt;/s:states&gt;<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; &lt;!--graphical elements--&gt;<br />
&nbsp; &nbsp; &lt;s:Rect top=&quot;0&quot; bottom=&quot;0&quot; left=&quot;0&quot; right=&quot;0&quot;&gt;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;s:stroke&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mx:SolidColorStroke color=&quot;0x000000&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/s:stroke&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;s:fill&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mx:SolidColor color=&quot;0xFF00CC&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/s:fill&gt;<br />
&nbsp; &nbsp; &lt;/s:Rect&gt;<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; &lt;!--SKIN PARTS--&gt;<br />
&nbsp; &nbsp; &lt;s:SimpleText id=&quot;labelElement&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; top=&quot;5&quot; bottom=&quot;5&quot; left=&quot;20&quot; right=&quot;20&quot; /&gt;<br />
&lt;/s:Skin&gt;</div></div>
]]></content:encoded>
			<wfw:commentRss>http://mikeorth.com/2009/skinning-flex-4-slides-uber-basic-example-button-skin/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Flex Flash Camp Presentation, slides on Flex 4 Skinning coming soon</title>
		<link>http://mikeorth.com/2009/flex-flash-camp-slides-on-skinning-coming-soon</link>
		<comments>http://mikeorth.com/2009/flex-flash-camp-slides-on-skinning-coming-soon#comments</comments>
		<pubDate>Thu, 25 Jun 2009 17:41:16 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Flex Flash Camp]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[Skinning]]></category>

		<guid isPermaLink="false">http://mikeorth.com/?p=18</guid>
		<description><![CDATA[My presentation on Skinning in Flex 4 from the Adobe User Group Tour &#38; Flex / Flash Camp will be up soon.  It covers the basics of what has changed for skinning and styling.  The demos walk you through creating a new skin and how certain aspects affect the end result.  I had a great [...]]]></description>
			<content:encoded><![CDATA[<p>My presentation on Skinning in Flex 4 from the Adobe User Group Tour &amp; Flex / Flash Camp will be up soon.  It covers the basics of what has changed for skinning and styling.  The demos walk you through creating a new skin and how certain aspects affect the end result.  I had a great time meeting more people from 615Flex.  Matthew did an awesome job of getting the event organized and off the ground.</p>
<p>Special thanks to Greg Wilson from Adboe, all the attendaes &amp; presenters.</p>
<p><a href="http://615flex.com/schedule-speaker-details-flex-flash-camp-nashville/"> <img src="http://images.eventbrite.com/logos/346278729.jpg" alt="Flex / Flash Camp, Adboe User Group Tour" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mikeorth.com/2009/flex-flash-camp-slides-on-skinning-coming-soon/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Flash Builder 4 Beta / FB3 &#8211; &#8220;Removing compiler problem markers&#8221; error</title>
		<link>http://mikeorth.com/2009/flash-builder-4-beta-fb3-removing-compiler-problem-markers-error</link>
		<comments>http://mikeorth.com/2009/flash-builder-4-beta-fb3-removing-compiler-problem-markers-error#comments</comments>
		<pubDate>Wed, 10 Jun 2009 14:42:08 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://mikeorth.com/?p=17</guid>
		<description><![CDATA[If you&#8217;ve played with the new Flash Builder 4 Beta, you may have wanted to test out your existing projects in it.  And like me, you may have just quickly pointed it to an existing workspace to import a project.  If you haven&#8217;t &#8211; DON&#8217;T.  Once you switch back to Flex Builder 3, you will [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve played with the new Flash Builder 4 Beta, you may have wanted to test out your existing projects in it.  And like me, you may have just quickly pointed it to an existing workspace to import a project.  If you haven&#8217;t &#8211; DON&#8217;T.  Once you switch back to Flex Builder 3, you will start getting <strong>An internal error occurred during &#8220;Removing compiler problem markers&#8230;&#8221;</strong></p>
<p>This is because FB4 is built on a different version of Eclipse and modifies your workspace files (not your .project files), i.e. it hoses your existing workspace.  To get rid of it, just create a new workspace in FB3 and import your projects there.</p>
]]></content:encoded>
			<wfw:commentRss>http://mikeorth.com/2009/flash-builder-4-beta-fb3-removing-compiler-problem-markers-error/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>Google Tracking Code</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->
</head>

<body>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>

<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-4604733-1");
pageTracker._initData();
pageTracker._trackPageview();
</script>  
</body>
</html>
