<?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! &#187; Skinning</title>
	<atom:link href="http://mikeorth.com/category/skinning/feed" rel="self" type="application/rss+xml" />
	<link>http://mikeorth.com</link>
	<description>Flex, Actionscript</description>
	<lastBuildDate>Thu, 22 Dec 2011 15:08:24 +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>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>
	</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>

