<?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>Flash Builder Örnekleri</title>
	<atom:link href="http://www.theflashbuilder.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.theflashbuilder.com</link>
	<description>Flash Builder ( Flex 4 ) Makaleleri</description>
	<lastBuildDate>Wed, 28 Jul 2010 06:34:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Flex&#8217;te Module #1009 Error Code</title>
		<link>http://www.theflashbuilder.com/flexte-module-1009-error-code.html</link>
		<comments>http://www.theflashbuilder.com/flexte-module-1009-error-code.html#comments</comments>
		<pubDate>Wed, 28 Jul 2010 06:34:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hatalar - Errors]]></category>

		<guid isPermaLink="false">http://www.theflashbuilder.com/?p=116</guid>
		<description><![CDATA[Module içinde DragManager ve PopUpManager kullanıyorsanız, bu hatayı almanız olasılıdır. Bu hata, modül içinde tanımlanan PopUpManager ve DragManager&#8216;ın Application ( ana gövde ) tanımlanması gerekir. import mx.managers.DragManager; var dm:DragManager; Bu tanımlamayı benzer şekilde PopUpManager içinde yapabilirsiniz.]]></description>
			<content:encoded><![CDATA[<p>Module içinde DragManager ve <strong>PopUpManager </strong>kullanıyorsanız, bu hatayı almanız olasılıdır.</p>
<p>Bu hata, modül içinde tanımlanan <strong>PopUpManager </strong>ve <strong>DragManager</strong>&#8216;ın Application ( ana gövde ) tanımlanması gerekir.</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #0033ff; font-weight: bold;">import</span> mx.managers.DragManager;
<span style="color: #6699cc; font-weight: bold;">var</span> dm<span style="color: #000000; font-weight: bold;">:</span>DragManager;</pre></div></div>

<p>Bu tanımlamayı benzer şekilde <strong>PopUpManager </strong>içinde yapabilirsiniz.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theflashbuilder.com/flexte-module-1009-error-code.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>As3 Email Validation ( Regex )</title>
		<link>http://www.theflashbuilder.com/as3-email-validationas3-email-validation-regex.html</link>
		<comments>http://www.theflashbuilder.com/as3-email-validationas3-email-validation-regex.html#comments</comments>
		<pubDate>Fri, 04 Jun 2010 13:50:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Action Script Hints]]></category>
		<category><![CDATA[email valid]]></category>
		<category><![CDATA[email validation]]></category>
		<category><![CDATA[regex]]></category>

		<guid isPermaLink="false">http://www.theflashbuilder.com/?p=114</guid>
		<description><![CDATA[Here&#8217;s an example of how one might validate email using ActionScript 3&#8242;s Regular Expression class &#160; function isValidEmail&#40;email:String&#41;:Boolean &#123; var emailExpression:RegExp = /^&#91;a-z&#93;&#91;\w.-&#93;+@\w&#91;\w.-&#93;+\.&#91;\w.-&#93;*&#91;a-z&#93;&#91;a-z&#93;$/i; return emailExpression.test&#40;email&#41;; &#125; &#160; trace&#40;isValidEmail&#40;&#34;senocular@example.com&#34;&#41;&#41;; // true trace&#40;isValidEmail&#40;&#34;@example.com&#34;&#41;&#41;; // false trace&#40;isValidEmail&#40;&#34;senocular@example&#34;&#41;&#41;; // false trace&#40;isValidEmail&#40;&#34;seno\\cular@example.com&#34;&#41;&#41;; // false]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s an example of how one might validate email using ActionScript 3&#8242;s Regular Expression class</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;">&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> isValidEmail<span style="color: #000000;">&#40;</span>email<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">String</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Boolean</span> <span style="color: #000000;">&#123;</span>
	<span style="color: #6699cc; font-weight: bold;">var</span> emailExpression<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">RegExp</span> = <span style="color: #000000; font-weight: bold;">/^</span><span style="color: #000000;">&#91;</span>a<span style="color: #000000; font-weight: bold;">-</span>z<span style="color: #000000;">&#93;</span><span style="color: #000000;">&#91;</span>\w.<span style="color: #000000; font-weight: bold;">-</span><span style="color: #000000;">&#93;</span><span style="color: #000000; font-weight: bold;">+</span>@\w<span style="color: #000000;">&#91;</span>\w.<span style="color: #000000; font-weight: bold;">-</span><span style="color: #000000;">&#93;</span><span style="color: #000000; font-weight: bold;">+</span>\.<span style="color: #000000;">&#91;</span>\w.<span style="color: #000000; font-weight: bold;">-</span><span style="color: #000000;">&#93;</span><span style="color: #000000; font-weight: bold;">*</span><span style="color: #000000;">&#91;</span>a<span style="color: #000000; font-weight: bold;">-</span>z<span style="color: #000000;">&#93;</span><span style="color: #000000;">&#91;</span>a<span style="color: #000000; font-weight: bold;">-</span>z<span style="color: #000000;">&#93;</span>$<span style="color: #000000; font-weight: bold;">/</span>i;
	<span style="color: #0033ff; font-weight: bold;">return</span> emailExpression.<span style="color: #004993;">test</span><span style="color: #000000;">&#40;</span>email<span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #004993;">trace</span><span style="color: #000000;">&#40;</span>isValidEmail<span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;senocular@example.com&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>; <span style="color: #009900;">// true</span>
<span style="color: #004993;">trace</span><span style="color: #000000;">&#40;</span>isValidEmail<span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;@example.com&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>; <span style="color: #009900;">// false</span>
<span style="color: #004993;">trace</span><span style="color: #000000;">&#40;</span>isValidEmail<span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;senocular@example&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>; <span style="color: #009900;">// false</span>
<span style="color: #004993;">trace</span><span style="color: #000000;">&#40;</span>isValidEmail<span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;seno<span style="">\\</span>cular@example.com&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>; <span style="color: #009900;">// false</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.theflashbuilder.com/as3-email-validationas3-email-validation-regex.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ColorPicker an Array of color, label, and description</title>
		<link>http://www.theflashbuilder.com/colorpicker-an-array-of-color-label-and-description.html</link>
		<comments>http://www.theflashbuilder.com/colorpicker-an-array-of-color-label-and-description.html#comments</comments>
		<pubDate>Sat, 01 May 2010 12:57:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[<mx:ColorPicker>]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[ColorPicker]]></category>
		<category><![CDATA[dataProvider]]></category>
		<category><![CDATA[description]]></category>
		<category><![CDATA[label]]></category>

		<guid isPermaLink="false">http://www.theflashbuilder.com/?p=105</guid>
		<description><![CDATA[The following example shows a ColorPicker that uses an Array of Objects with three fields: color, label, and description: Turkish bur örnek ile colorpicker içerisinde renklere isim ve açıklama ekleyebilirsiniz. &#60;?xml version=&#34;1.0&#34;?&#62; &#60;mx:Application xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34;&#62; &#160; &#60;mx:Script&#62; &#60;!&#91;CDATA&#91; import mx.events.ColorPickerEvent; import mx.events.DropdownEvent; &#160; &#91;Bindable&#93; public var complexDPArray:Array = &#91; &#123;label:&#34;Yellow&#34;, color:&#34;0xFFFF00&#34;, descript:&#34;A bright, light color.&#34;&#125;, &#123;label:&#34;Hot [...]]]></description>
			<content:encoded><![CDATA[<p>The following example shows a ColorPicker that uses an Array of Objects with three fields: color, label, and description:</p>
<p><em><br />
Turkish</em><br />
bur örnek ile colorpicker içerisinde renklere isim ve açıklama ekleyebilirsiniz. </p>
<p><span id="more-105"></span></p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?</span>xml <span style="color: #004993;">version</span>=<span style="color: #990000;">&quot;1.0&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>Application xmlns<span style="color: #000000; font-weight: bold;">:</span>mx=<span style="color: #990000;">&quot;http://www.adobe.com/2006/mxml&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>Script<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;!</span><span style="color: #000000;">&#91;</span>CDATA<span style="color: #000000;">&#91;</span>
			<span style="color: #0033ff; font-weight: bold;">import</span> mx.events.ColorPickerEvent;
			<span style="color: #0033ff; font-weight: bold;">import</span> mx.events.DropdownEvent;
&nbsp;
			<span style="color: #000000;">&#91;</span>Bindable<span style="color: #000000;">&#93;</span>
			<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> complexDPArray<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Array</span> = <span style="color: #000000;">&#91;</span>
				<span style="color: #000000;">&#123;</span>label<span style="color: #000000; font-weight: bold;">:</span><span style="color: #990000;">&quot;Yellow&quot;</span>, <span style="color: #004993;">color</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #990000;">&quot;0xFFFF00&quot;</span>, 
					descript<span style="color: #000000; font-weight: bold;">:</span><span style="color: #990000;">&quot;A bright, light color.&quot;</span><span style="color: #000000;">&#125;</span>, 
				<span style="color: #000000;">&#123;</span>label<span style="color: #000000; font-weight: bold;">:</span><span style="color: #990000;">&quot;Hot Pink&quot;</span>, <span style="color: #004993;">color</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #990000;">&quot;0xFF66CC&quot;</span>, 
					descript<span style="color: #000000; font-weight: bold;">:</span><span style="color: #990000;">&quot;It's HOT!&quot;</span><span style="color: #000000;">&#125;</span>, 
				<span style="color: #000000;">&#123;</span>label<span style="color: #000000; font-weight: bold;">:</span><span style="color: #990000;">&quot;Brick Red&quot;</span>, <span style="color: #004993;">color</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #990000;">&quot;0x990000&quot;</span>, 
					descript<span style="color: #000000; font-weight: bold;">:</span><span style="color: #990000;">&quot;Goes well with warm colors.&quot;</span><span style="color: #000000;">&#125;</span>, 
				<span style="color: #000000;">&#123;</span>label<span style="color: #000000; font-weight: bold;">:</span><span style="color: #990000;">&quot;Navy Blue&quot;</span>, <span style="color: #004993;">color</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #990000;">&quot;0x000066&quot;</span>, 
					descript<span style="color: #000000; font-weight: bold;">:</span><span style="color: #990000;">&quot;The conservative favorite.&quot;</span><span style="color: #000000;">&#125;</span>, 
				<span style="color: #000000;">&#123;</span>label<span style="color: #000000; font-weight: bold;">:</span><span style="color: #990000;">&quot;Forest Green&quot;</span>, <span style="color: #004993;">color</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #990000;">&quot;0x006600&quot;</span>, 
					descript<span style="color: #000000; font-weight: bold;">:</span><span style="color: #990000;">&quot;Great outdoorsy look.&quot;</span><span style="color: #000000;">&#125;</span>, 
				<span style="color: #000000;">&#123;</span>label<span style="color: #000000; font-weight: bold;">:</span><span style="color: #990000;">&quot;Grey&quot;</span>, <span style="color: #004993;">color</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #990000;">&quot;0x666666&quot;</span>, 
					descript<span style="color: #000000; font-weight: bold;">:</span><span style="color: #990000;">&quot;An old reliable.&quot;</span><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>
&nbsp;
			<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> openEvt<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span>DropdownEvent<span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span> <span style="color: #000000;">&#123;</span>
				descriptBox.<span style="color: #004993;">text</span>=<span style="color: #990000;">&quot;&quot;</span>;
			<span style="color: #000000;">&#125;</span>
&nbsp;
			<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> changeEvt<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span>ColorPickerEvent<span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span> <span style="color: #000000;">&#123;</span>
				descriptBox.<span style="color: #004993;">text</span>=event.<span style="color: #004993;">currentTarget</span>.selectedItem.label
					<span style="color: #000000; font-weight: bold;">+</span> <span style="color: #990000;">&quot;: &quot;</span> <span style="color: #000000; font-weight: bold;">+</span> event.<span style="color: #004993;">currentTarget</span>.selectedItem.descript; 
			<span style="color: #000000;">&#125;</span>
		<span style="color: #000000;">&#93;</span><span style="color: #000000;">&#93;</span><span style="color: #000000; font-weight: bold;">&gt;</span>    
	<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>Script<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>Style<span style="color: #000000; font-weight: bold;">&gt;</span>
		.myStyle <span style="color: #000000;">&#123;</span>
			swatchWidth<span style="color: #000000; font-weight: bold;">:</span><span style="color: #000000; font-weight:bold;">25</span>;
			swatchHeight<span style="color: #000000; font-weight: bold;">:</span><span style="color: #000000; font-weight:bold;">25</span>;
			textFieldWidth<span style="color: #000000; font-weight: bold;">:</span><span style="color: #000000; font-weight:bold;">95</span>;
		<span style="color: #000000;">&#125;</span>    
	<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>Style<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>ArrayCollection id=<span style="color: #990000;">&quot;complexDP&quot;</span> <span style="color: #004993;">source</span>=<span style="color: #990000;">&quot;{complexDPArray}&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>VBox<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>TextArea id=<span style="color: #990000;">&quot;descriptBox&quot;</span> 
					 <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;150&quot;</span> <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;50&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>ColorPicker id=<span style="color: #990000;">&quot;cp&quot;</span> 
						<span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;50&quot;</span> <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;150&quot;</span>
						dataProvider=<span style="color: #990000;">&quot;{complexDP}&quot;</span> 
						<span style="color: #004993;">change</span>=<span style="color: #990000;">&quot;changeEvt(event);&quot;</span> 
						<span style="color: #004993;">open</span>=<span style="color: #990000;">&quot;openEvt(event);&quot;</span> 
						editable=<span style="color: #990000;">&quot;false&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span>      
	<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>VBox<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>Application<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p><strong>Demo :</strong><br />
<iframe src="http://www.theflashbuilder.com/flashs/color_picker_array/Blog.html" width="470px" height="250px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theflashbuilder.com/colorpicker-an-array-of-color-label-and-description.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ColorPicker change, open, close events</title>
		<link>http://www.theflashbuilder.com/colorpicker-change-open-close-events.html</link>
		<comments>http://www.theflashbuilder.com/colorpicker-change-open-close-events.html#comments</comments>
		<pubDate>Sat, 01 May 2010 12:51:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[<mx:ColorPicker>]]></category>
		<category><![CDATA[ColorPicker change]]></category>
		<category><![CDATA[ColorPicker close]]></category>
		<category><![CDATA[ColorPicker open]]></category>
		<category><![CDATA[ColorPickerEvent]]></category>

		<guid isPermaLink="false">http://www.theflashbuilder.com/?p=101</guid>
		<description><![CDATA[you can perceive with events, This examples shows you how can you perceive change, open, close events. Turkish Bu örnek ile colorpicker&#8217;ın hareketlerini algılayabilirsiniz. Örneğin seçilen rengi, açılıp kapandığı gibi &#60;?xml version=&#34;1.0&#34;?&#62; &#60;mx:Application xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34;&#62; &#160; &#60;mx:Script&#62; &#60;!&#91;CDATA&#91; //Import the event classes. import mx.events.DropdownEvent; import mx.events.ColorPickerEvent; &#160; &#91;Bindable&#93; public var Color_picker_DP:Array = &#91;'0x000000', '0xFF0000', '0xFF8800', '0xFFFF00', [...]]]></description>
			<content:encoded><![CDATA[<p>you can perceive with events, This examples shows you how can you perceive change, open, close events.</p>
<p><em>Turkish</em><br />
Bu örnek ile colorpicker&#8217;ın hareketlerini algılayabilirsiniz. Örneğin seçilen rengi, açılıp kapandığı gibi</p>
<p><span id="more-101"></span></p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?</span>xml <span style="color: #004993;">version</span>=<span style="color: #990000;">&quot;1.0&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>Application xmlns<span style="color: #000000; font-weight: bold;">:</span>mx=<span style="color: #990000;">&quot;http://www.adobe.com/2006/mxml&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>Script<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;!</span><span style="color: #000000;">&#91;</span>CDATA<span style="color: #000000;">&#91;</span>
			<span style="color: #009900;">//Import the event classes.</span>
			<span style="color: #0033ff; font-weight: bold;">import</span> mx.events.DropdownEvent;
			<span style="color: #0033ff; font-weight: bold;">import</span> mx.events.ColorPickerEvent;
&nbsp;
			<span style="color: #000000;">&#91;</span>Bindable<span style="color: #000000;">&#93;</span>
			<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> Color_picker_DP<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Array</span> = <span style="color: #000000;">&#91;</span><span style="color: #990000;">'0x000000'</span>, <span style="color: #990000;">'0xFF0000'</span>, <span style="color: #990000;">'0xFF8800'</span>,
				<span style="color: #990000;">'0xFFFF00'</span>, <span style="color: #990000;">'0x88FF00'</span>, <span style="color: #990000;">'0x00FF00'</span>, <span style="color: #990000;">'0x00FF88'</span>, <span style="color: #990000;">'0x00FFFF'</span>,
				<span style="color: #990000;">'0x0088FF'</span>, <span style="color: #990000;">'0x0000FF'</span>, <span style="color: #990000;">'0x8800FF'</span>, <span style="color: #990000;">'0xFF00FF'</span>, <span style="color: #990000;">'0xFFFFFF'</span><span style="color: #000000;">&#93;</span>;
&nbsp;
			<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> openEvt<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span>DropdownEvent<span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span> <span style="color: #000000;">&#123;</span>
				forChange.<span style="color: #004993;">text</span>=<span style="color: #990000;">&quot;Opened&quot;</span>;
			<span style="color: #000000;">&#125;</span>    
&nbsp;
			<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> closeEvt<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span>DropdownEvent<span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span> <span style="color: #000000;">&#123;</span>
				forChange.<span style="color: #004993;">text</span>=<span style="color: #990000;">&quot;Closed&quot;</span>;
			<span style="color: #000000;">&#125;</span>
&nbsp;
			<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> changeEvt<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span>ColorPickerEvent<span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span> <span style="color: #000000;">&#123;</span>
				forChange.<span style="color: #004993;">text</span>=<span style="color: #990000;">&quot;Selected Item: &quot;</span>
					<span style="color: #000000; font-weight: bold;">+</span> event.<span style="color: #004993;">currentTarget</span>.selectedItem <span style="color: #000000; font-weight: bold;">+</span> <span style="color: #990000;">&quot; Selected Index: &quot;</span>
					<span style="color: #000000; font-weight: bold;">+</span> event.<span style="color: #004993;">currentTarget</span>.selectedIndex;
			<span style="color: #000000;">&#125;</span>
		<span style="color: #000000;">&#93;</span><span style="color: #000000;">&#93;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>Script<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>VBox<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>TextArea id=<span style="color: #990000;">&quot;forChange&quot;</span> 
					 <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;150&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>ColorPicker id=<span style="color: #990000;">&quot;cp&quot;</span> 
						dataProvider=<span style="color: #990000;">&quot;{Color_picker_DP}&quot;</span>
						<span style="color: #004993;">open</span>=<span style="color: #990000;">&quot;openEvt(event);&quot;</span> 
						<span style="color: #004993;">close</span>=<span style="color: #990000;">&quot;closeEvt(event);&quot;</span>
						<span style="color: #004993;">change</span>=<span style="color: #990000;">&quot;changeEvt(event);&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span> 
	<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>VBox<span style="color: #000000; font-weight: bold;">&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>Application<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p><strong>Demo :</strong><br />
<iframe src="http://www.theflashbuilder.com/flashs/color_picker_change_event/Blog.html" width="470px" height="250px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theflashbuilder.com/colorpicker-change-open-close-events.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ColorPicker DataProvider</title>
		<link>http://www.theflashbuilder.com/colorpicker-dataprovider.html</link>
		<comments>http://www.theflashbuilder.com/colorpicker-dataprovider.html#comments</comments>
		<pubDate>Sat, 01 May 2010 12:45:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[<mx:ColorPicker>]]></category>
		<category><![CDATA[ColorPicker]]></category>
		<category><![CDATA[ColorPicker DataProvider]]></category>
		<category><![CDATA[dataProvider]]></category>

		<guid isPermaLink="false">http://www.theflashbuilder.com/?p=99</guid>
		<description><![CDATA[You may want user to select some colors, so you must use color picker and dataprovider that has the colors. Turkish Color picker ile kullanıcıların bazı renklerini seçmesini isteyebilirsiniz. Bunun için colorpicker içerisine dataprovider göndermeniz gerekir. Bu data provider içinde seçilebilir renkler mevcuttur. &#60;?xml version=&#34;1.0&#34;?&#62; &#60;mx:Application xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34;&#62; &#60;mx:Script&#62; &#60;!&#91;CDATA&#91; &#91;Bindable&#93; public var color_picker_DP:Array = &#91;'0x000000', [...]]]></description>
			<content:encoded><![CDATA[<p>You may want user to select some colors, so you must use color picker and dataprovider that has the colors.</p>
<p><em>Turkish</em><br />
Color picker ile kullanıcıların bazı renklerini seçmesini isteyebilirsiniz. Bunun için colorpicker içerisine dataprovider göndermeniz gerekir. Bu data provider içinde seçilebilir renkler mevcuttur.</p>
<p><span id="more-99"></span></p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?</span>xml <span style="color: #004993;">version</span>=<span style="color: #990000;">&quot;1.0&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>Application xmlns<span style="color: #000000; font-weight: bold;">:</span>mx=<span style="color: #990000;">&quot;http://www.adobe.com/2006/mxml&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>Script<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;!</span><span style="color: #000000;">&#91;</span>CDATA<span style="color: #000000;">&#91;</span>
			<span style="color: #000000;">&#91;</span>Bindable<span style="color: #000000;">&#93;</span>
			<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> color_picker_DP<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Array</span> = <span style="color: #000000;">&#91;</span><span style="color: #990000;">'0x000000'</span>, <span style="color: #990000;">'0xFF0000'</span>, <span style="color: #990000;">'0xFF8800'</span>,
				<span style="color: #990000;">'0xFFFF00'</span>, <span style="color: #990000;">'0x88FF00'</span>, <span style="color: #990000;">'0x00FF00'</span>, <span style="color: #990000;">'0x00FF88'</span>, <span style="color: #990000;">'0x00FFFF'</span>, 
				<span style="color: #990000;">'0x0088FF'</span>, <span style="color: #990000;">'0x0000FF'</span>, <span style="color: #990000;">'0x8800FF'</span>, <span style="color: #990000;">'0xFF00FF'</span>, <span style="color: #990000;">'0xFFFFFF'</span><span style="color: #000000;">&#93;</span>;
		<span style="color: #000000;">&#93;</span><span style="color: #000000;">&#93;</span><span style="color: #000000; font-weight: bold;">&gt;</span>    
	<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>Script<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>ColorPicker id=<span style="color: #990000;">&quot;cp&quot;</span> dataProvider=<span style="color: #990000;">&quot;{color_picker_DP}&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>Application<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p><strong>Demo :</strong><br />
<iframe src="http://www.theflashbuilder.com/flashs/color_picker_dataprovider/Blog.html" width="470px" height="250px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theflashbuilder.com/colorpicker-dataprovider.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spinner and allowValueWrap</title>
		<link>http://www.theflashbuilder.com/spinner-and-allowvaluewrap.html</link>
		<comments>http://www.theflashbuilder.com/spinner-and-allowvaluewrap.html#comments</comments>
		<pubDate>Tue, 20 Apr 2010 15:53:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[<s:Spinner>]]></category>
		<category><![CDATA[allowValueWrap]]></category>

		<guid isPermaLink="false">http://www.theflashbuilder.com/?p=95</guid>
		<description><![CDATA[This examples how can you create spinner wtih wrap value ( allowValueWrap ). Turkish Spinner bileşinin basit kullanımı görmektesiniz. Wrapvalue değerini değiştererek başa dönmeyi etkinleştirebilirsiniz. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;s:Application xmlns:fx=&#34;http://ns.adobe.com/mxml/2009&#34; xmlns:s=&#34;library://ns.adobe.com/flex/spark&#34; xmlns:mx=&#34;library://ns.adobe.com/flex/mx&#34; minWidth=&#34;955&#34; minHeight=&#34;600&#34; width=&#34;537&#34; height=&#34;200&#34;&#62; &#160; &#60;s:Spinner x=&#34;220&#34; y=&#34;43&#34; height=&#34;59&#34; minimum=&#34;0&#34; maximum=&#34;10&#34; allowValueWrap=&#34;{valuewrap.selected}&#34; id=&#34;spinner&#34;/&#62; &#60;s:Label x=&#34;155&#34; y=&#34;124&#34; text=&#34;Value:&#34; width=&#34;42&#34;/&#62; &#60;s:Label text=&#34;{spinner.value}&#34; x=&#34;207&#34; y=&#34;124&#34;/&#62; &#60;s:CheckBox [...]]]></description>
			<content:encoded><![CDATA[<p>This examples how can you create <strong>spinner </strong>wtih wrap value ( <strong>allowValueWrap </strong>).</p>
<p><em>Turkish</em><br />
Spinner bileşinin basit kullanımı görmektesiniz. Wrapvalue değerini değiştererek başa dönmeyi etkinleştirebilirsiniz.</p>
<p><span id="more-95"></span></p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?</span>xml <span style="color: #004993;">version</span>=<span style="color: #990000;">&quot;1.0&quot;</span> encoding=<span style="color: #990000;">&quot;utf-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Application xmlns<span style="color: #000000; font-weight: bold;">:</span>fx=<span style="color: #990000;">&quot;http://ns.adobe.com/mxml/2009&quot;</span> 
			   xmlns<span style="color: #000000; font-weight: bold;">:</span>s=<span style="color: #990000;">&quot;library://ns.adobe.com/flex/spark&quot;</span> 
			   xmlns<span style="color: #000000; font-weight: bold;">:</span>mx=<span style="color: #990000;">&quot;library://ns.adobe.com/flex/mx&quot;</span> minWidth=<span style="color: #990000;">&quot;955&quot;</span> minHeight=<span style="color: #990000;">&quot;600&quot;</span> <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;537&quot;</span> <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;200&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Spinner <span style="color: #004993;">x</span>=<span style="color: #990000;">&quot;220&quot;</span>  <span style="color: #004993;">y</span>=<span style="color: #990000;">&quot;43&quot;</span> <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;59&quot;</span> 
			   minimum=<span style="color: #990000;">&quot;0&quot;</span>
			   maximum=<span style="color: #990000;">&quot;10&quot;</span>
			   allowValueWrap=<span style="color: #990000;">&quot;{valuewrap.selected}&quot;</span>
			   id=<span style="color: #990000;">&quot;spinner&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Label <span style="color: #004993;">x</span>=<span style="color: #990000;">&quot;155&quot;</span> <span style="color: #004993;">y</span>=<span style="color: #990000;">&quot;124&quot;</span> <span style="color: #004993;">text</span>=<span style="color: #990000;">&quot;Value:&quot;</span> <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;42&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Label <span style="color: #004993;">text</span>=<span style="color: #990000;">&quot;{spinner.value}&quot;</span> <span style="color: #004993;">x</span>=<span style="color: #990000;">&quot;207&quot;</span> <span style="color: #004993;">y</span>=<span style="color: #990000;">&quot;124&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>CheckBox id=<span style="color: #990000;">&quot;valuewrap&quot;</span> <span style="color: #004993;">x</span>=<span style="color: #990000;">&quot;10&quot;</span> <span style="color: #004993;">y</span>=<span style="color: #990000;">&quot;10&quot;</span> label=<span style="color: #990000;">&quot;valueWrap - Degerin Basa Donmesi&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>Application<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p><strong>Demo :</strong><br />
<iframe src="http://www.theflashbuilder.com/flashs/spinner/Blog.html" width="470px" height="250px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theflashbuilder.com/spinner-and-allowvaluewrap.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PopUpMenuButton with labelFunction</title>
		<link>http://www.theflashbuilder.com/popupmenubutton-with-labelfunction.html</link>
		<comments>http://www.theflashbuilder.com/popupmenubutton-with-labelfunction.html#comments</comments>
		<pubDate>Tue, 20 Apr 2010 15:31:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[<mx:PopUpMenuButton>]]></category>
		<category><![CDATA[labelFunction]]></category>
		<category><![CDATA[XMLList]]></category>

		<guid isPermaLink="false">http://www.theflashbuilder.com/?p=88</guid>
		<description><![CDATA[This example you can create PopUpMenuButton with labelFunction and XMLList. Turkish Bu örnek ile PopUpMenuButton oluşturabilirsiniz. XMLList ile veriler gönderilmektedir. Gelen veriler &#8220;popUpMenuButton_labelFunction&#8221; fonksiyonunda derlenerek tekrar PopUpMenuButton&#8217;a gönderilmektedir. Main.mxml &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;s:Application xmlns:fx=&#34;http://ns.adobe.com/mxml/2009&#34; xmlns:s=&#34;library://ns.adobe.com/flex/spark&#34; xmlns:mx=&#34;library://ns.adobe.com/flex/mx&#34; minWidth=&#34;955&#34; minHeight=&#34;600&#34; width=&#34;537&#34; height=&#34;320&#34;&#62; &#60;fx:Declarations&#62; &#60;fx:XMLList id=&#34;itemsXML&#34;&#62; &#60;item label=&#34;Item 1&#34; /&#62; &#60;item label=&#34;Item 2&#34; /&#62; &#60;item label=&#34;Item 3&#34; /&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>This example you can create <strong>PopUpMenuButton </strong> with labelFunction and XMLList. </p>
<p><em>Turkish</em><br />
Bu örnek ile PopUpMenuButton oluşturabilirsiniz. XMLList ile veriler gönderilmektedir. Gelen veriler <em>&#8220;popUpMenuButton_labelFunction&#8221;</em> fonksiyonunda derlenerek tekrar PopUpMenuButton&#8217;a gönderilmektedir.</p>
<p><span id="more-88"></span></p>
<p><strong>Main.mxml</strong></p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?</span>xml <span style="color: #004993;">version</span>=<span style="color: #990000;">&quot;1.0&quot;</span> encoding=<span style="color: #990000;">&quot;utf-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Application xmlns<span style="color: #000000; font-weight: bold;">:</span>fx=<span style="color: #990000;">&quot;http://ns.adobe.com/mxml/2009&quot;</span> 
			   xmlns<span style="color: #000000; font-weight: bold;">:</span>s=<span style="color: #990000;">&quot;library://ns.adobe.com/flex/spark&quot;</span> 
			   xmlns<span style="color: #000000; font-weight: bold;">:</span>mx=<span style="color: #990000;">&quot;library://ns.adobe.com/flex/mx&quot;</span> minWidth=<span style="color: #990000;">&quot;955&quot;</span> minHeight=<span style="color: #990000;">&quot;600&quot;</span> <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;537&quot;</span> <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;320&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;</span>fx<span style="color: #000000; font-weight: bold;">:</span>Declarations<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;</span>fx<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">XMLList</span> id=<span style="color: #990000;">&quot;itemsXML&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>item label=<span style="color: #990000;">&quot;Item 1&quot;</span>  <span style="color: #000000; font-weight: bold;">/&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>item label=<span style="color: #990000;">&quot;Item 2&quot;</span>  <span style="color: #000000; font-weight: bold;">/&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>item label=<span style="color: #990000;">&quot;Item 3&quot;</span>  <span style="color: #000000; font-weight: bold;">/&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>item label=<span style="color: #990000;">&quot;Item 4&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>item label=<span style="color: #990000;">&quot;Item 5&quot;</span>  <span style="color: #000000; font-weight: bold;">/&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>item label=<span style="color: #990000;">&quot;Item 6&quot;</span>  <span style="color: #000000; font-weight: bold;">/&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>item label=<span style="color: #990000;">&quot;Item 7&quot;</span>  <span style="color: #000000; font-weight: bold;">/&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>item label=<span style="color: #990000;">&quot;Item 8&quot;</span>  <span style="color: #000000; font-weight: bold;">/&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;/</span>fx<span style="color: #000000; font-weight: bold;">:</span>XMLList<span style="color: #000000; font-weight: bold;">&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;/</span>fx<span style="color: #000000; font-weight: bold;">:</span>Declarations<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;</span>fx<span style="color: #000000; font-weight: bold;">:</span>Script<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;!</span><span style="color: #000000;">&#91;</span>CDATA<span style="color: #000000;">&#91;</span>
			<span style="color: #0033ff; font-weight: bold;">import</span> mx.controls.Alert;
			<span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #339966; font-weight: bold;">function</span> popUpMenuButton_labelFunction<span style="color: #000000;">&#40;</span>item<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Object</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">String</span> <span style="color: #000000;">&#123;</span>
				<span style="color: #0033ff; font-weight: bold;">return</span> item.@label;
			<span style="color: #000000;">&#125;</span>
&nbsp;
		<span style="color: #000000;">&#93;</span><span style="color: #000000;">&#93;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;/</span>fx<span style="color: #000000; font-weight: bold;">:</span>Script<span style="color: #000000; font-weight: bold;">&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>PopUpMenuButton labelFunction=<span style="color: #990000;">&quot;popUpMenuButton_labelFunction&quot;</span> dataProvider=<span style="color: #990000;">&quot;{itemsXML}&quot;</span> <span style="color: #004993;">x</span>=<span style="color: #990000;">&quot;10&quot;</span> <span style="color: #004993;">y</span>=<span style="color: #990000;">&quot;10&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>PopUpMenuButton<span style="color: #000000; font-weight: bold;">&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>Application<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p><strong>Demo :</strong><br />
<iframe src="http://www.theflashbuilder.com/flashs/popupmenubutton/Blog.html" width="470px" height="250px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theflashbuilder.com/popupmenubutton-with-labelfunction.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accordion Skin Style</title>
		<link>http://www.theflashbuilder.com/accordion-skin-style.html</link>
		<comments>http://www.theflashbuilder.com/accordion-skin-style.html#comments</comments>
		<pubDate>Sun, 11 Apr 2010 07:28:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[<mx:Accordion>]]></category>
		<category><![CDATA[accordion]]></category>
		<category><![CDATA[ClassReference]]></category>
		<category><![CDATA[headerStyleName]]></category>
		<category><![CDATA[NavigatorContent]]></category>
		<category><![CDATA[skin]]></category>
		<category><![CDATA[states]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://www.theflashbuilder.com/?p=82</guid>
		<description><![CDATA[a new thing in Flash Builder 4. You can change skin of any components. This examples how can you change skin of accordion Turkish Flash Builder ile gelen bir yenilikte nesnlerin görüntülerini dileğimizce değiştirebiliriz. Skin kullanımını aşağıdaki örnekte görebilirsiniz. Main.mxml &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;s:Application xmlns:fx=&#34;http://ns.adobe.com/mxml/2009&#34; xmlns:s=&#34;library://ns.adobe.com/flex/spark&#34; xmlns:mx=&#34;library://ns.adobe.com/flex/mx&#34; minWidth=&#34;955&#34; minHeight=&#34;600&#34; width=&#34;455&#34; height=&#34;242&#34;&#62; &#60;fx:Declarations&#62; &#60;!-- Place non-visual [...]]]></description>
			<content:encoded><![CDATA[<p>a new thing in Flash Builder 4. You can change skin of any components. This examples how can you change skin of accordion</p>
<p><em>Turkish</em><br />
Flash Builder ile gelen bir yenilikte nesnlerin görüntülerini dileğimizce değiştirebiliriz. Skin kullanımını aşağıdaki örnekte görebilirsiniz.</p>
<p><span id="more-82"></span></p>
<p><strong>Main.mxml</strong></p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?</span>xml <span style="color: #004993;">version</span>=<span style="color: #990000;">&quot;1.0&quot;</span> encoding=<span style="color: #990000;">&quot;utf-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Application xmlns<span style="color: #000000; font-weight: bold;">:</span>fx=<span style="color: #990000;">&quot;http://ns.adobe.com/mxml/2009&quot;</span> 
			   xmlns<span style="color: #000000; font-weight: bold;">:</span>s=<span style="color: #990000;">&quot;library://ns.adobe.com/flex/spark&quot;</span> 
			   xmlns<span style="color: #000000; font-weight: bold;">:</span>mx=<span style="color: #990000;">&quot;library://ns.adobe.com/flex/mx&quot;</span> minWidth=<span style="color: #990000;">&quot;955&quot;</span> minHeight=<span style="color: #990000;">&quot;600&quot;</span> <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;455&quot;</span> <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;242&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;</span>fx<span style="color: #000000; font-weight: bold;">:</span>Declarations<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;!--</span> Place non<span style="color: #000000; font-weight: bold;">-</span>visual <span style="color: #004993;">elements</span> <span style="color: #000000;">&#40;</span>e.g., services, <span style="color: #004993;">value</span> objects<span style="color: #000000;">&#41;</span> here <span style="color: #000000; font-weight: bold;">--&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;/</span>fx<span style="color: #000000; font-weight: bold;">:</span>Declarations<span style="color: #000000; font-weight: bold;">&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;</span>fx<span style="color: #000000; font-weight: bold;">:</span>Style<span style="color: #000000; font-weight: bold;">&gt;</span>
		@<span style="color: #004993;">namespace</span> s <span style="color: #990000;">&quot;library://ns.adobe.com/flex/spark&quot;</span>;
		@<span style="color: #004993;">namespace</span> mx <span style="color: #990000;">&quot;library://ns.adobe.com/flex/halo&quot;</span>;
&nbsp;
		.accordionHeader <span style="color: #000000;">&#123;</span>
			skin<span style="color: #000000; font-weight: bold;">:</span> ClassReference<span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;HeaderSkin&quot;</span><span style="color: #000000;">&#41;</span>;
		<span style="color: #000000;">&#125;</span>
	<span style="color: #000000; font-weight: bold;">&lt;/</span>fx<span style="color: #000000; font-weight: bold;">:</span>Style<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>Accordion <span style="color: #004993;">x</span>=<span style="color: #990000;">&quot;10&quot;</span> <span style="color: #004993;">y</span>=<span style="color: #990000;">&quot;10&quot;</span> <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;435&quot;</span> <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;222&quot;</span> styleName=<span style="color: #990000;">&quot;asd&quot;</span> headerStyleName=<span style="color: #990000;">&quot;accordionHeader&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>NavigatorContent label=<span style="color: #990000;">&quot;Accordion Pane 1&quot;</span> <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;100%&quot;</span> <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;100%&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>NavigatorContent<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>NavigatorContent label=<span style="color: #990000;">&quot;Menu 2&quot;</span> <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;100%&quot;</span> <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;100%&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>NavigatorContent<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>NavigatorContent label=<span style="color: #990000;">&quot;Menu 3&quot;</span> <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;100%&quot;</span> <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;100%&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>NavigatorContent<span style="color: #000000; font-weight: bold;">&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>Accordion<span style="color: #000000; font-weight: bold;">&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>Application<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p><strong>HeaderSkin.mxml</strong></p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?</span>xml <span style="color: #004993;">version</span>=<span style="color: #990000;">&quot;1.0&quot;</span> encoding=<span style="color: #990000;">&quot;utf-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>SparkSkin xmlns<span style="color: #000000; font-weight: bold;">:</span>fx=<span style="color: #990000;">&quot;http://ns.adobe.com/mxml/2009&quot;</span> xmlns<span style="color: #000000; font-weight: bold;">:</span>s=<span style="color: #990000;">&quot;library://ns.adobe.com/flex/spark&quot;</span> 
      minWidth=<span style="color: #990000;">&quot;21&quot;</span> minHeight=<span style="color: #990000;">&quot;21&quot;</span> <span style="color: #004993;">alpha</span>.disabled=<span style="color: #990000;">&quot;0.5&quot;</span> <span style="color: #004993;">width</span>.selectedDisabled=<span style="color: #990000;">&quot;121&quot;</span> <span style="color: #004993;">height</span>.selectedDisabled=<span style="color: #990000;">&quot;39&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">&lt;</span>fx<span style="color: #000000; font-weight: bold;">:</span>Script<span style="color: #000000; font-weight: bold;">&gt;</span>
        <span style="color: #3f5fbf;">/**
         * @private
         */</span>
        override <span style="color: #0033ff; font-weight: bold;">protected</span> <span style="color: #339966; font-weight: bold;">function</span> initializationComplete<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
        <span style="color: #000000;">&#123;</span>
          useChromeColor = <span style="color: #0033ff; font-weight: bold;">true</span>;
          <span style="color: #0033ff; font-weight: bold;">super</span>.initializationComplete<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
        <span style="color: #000000;">&#125;</span>
    <span style="color: #000000; font-weight: bold;">&lt;/</span>fx<span style="color: #000000; font-weight: bold;">:</span>Script<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">&lt;!--</span> states <span style="color: #000000; font-weight: bold;">--&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>states<span style="color: #000000; font-weight: bold;">&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>State <span style="color: #004993;">name</span>=<span style="color: #990000;">&quot;up&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>State <span style="color: #004993;">name</span>=<span style="color: #990000;">&quot;over&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>State <span style="color: #004993;">name</span>=<span style="color: #990000;">&quot;down&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>State <span style="color: #004993;">name</span>=<span style="color: #990000;">&quot;disabled&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>State <span style="color: #004993;">name</span>=<span style="color: #990000;">&quot;selectedUp&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>State <span style="color: #004993;">name</span>=<span style="color: #990000;">&quot;selectedOver&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>State <span style="color: #004993;">name</span>=<span style="color: #990000;">&quot;selectedDown&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>State <span style="color: #004993;">name</span>=<span style="color: #990000;">&quot;selectedDisabled&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>states<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect <span style="color: #004993;">left</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">right</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">top</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">bottom</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">alpha</span>=<span style="color: #990000;">&quot;1&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>fill<span style="color: #000000; font-weight: bold;">&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>BitmapFill <span style="color: #004993;">source</span>=<span style="color: #990000;">&quot;@Embed('air.png')&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>fill<span style="color: #000000; font-weight: bold;">&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
&nbsp;
    <span style="color: #000000; font-weight: bold;">&lt;!--</span> layer <span style="color: #000000; font-weight:bold;">3</span><span style="color: #000000; font-weight: bold;">:</span> fill <span style="color: #000000; font-weight: bold;">--&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect <span style="color: #004993;">left</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">right</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">top</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">bottom</span>=<span style="color: #990000;">&quot;1&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>fill<span style="color: #000000; font-weight: bold;">&gt;</span>
            <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>LinearGradient <span style="color: #004993;">rotation</span>=<span style="color: #990000;">&quot;90&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
                <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>GradientEntry <span style="color: #004993;">color</span>=<span style="color: #990000;">&quot;0xFFFF00&quot;</span> 
                               <span style="color: #004993;">color</span>.over=<span style="color: #990000;">&quot;0xBBBDBD&quot;</span> 
                               <span style="color: #004993;">color</span>.down=<span style="color: #990000;">&quot;0xAAAAAA&quot;</span> 
                               <span style="color: #004993;">alpha</span>=<span style="color: #990000;">&quot;0.85&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
                <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>GradientEntry <span style="color: #004993;">color</span>=<span style="color: #990000;">&quot;0xD8D800&quot;</span> 
                               <span style="color: #004993;">color</span>.over=<span style="color: #990000;">&quot;0x9FA0A1&quot;</span> 
                               <span style="color: #004993;">color</span>.down=<span style="color: #990000;">&quot;0x929496&quot;</span> 
                               <span style="color: #004993;">alpha</span>=<span style="color: #990000;">&quot;0.85&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
            <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>LinearGradient<span style="color: #000000; font-weight: bold;">&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>fill<span style="color: #000000; font-weight: bold;">&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">&lt;!--</span> layer <span style="color: #000000; font-weight:bold;">4</span><span style="color: #000000; font-weight: bold;">:</span> fill lowlight <span style="color: #000000; font-weight: bold;">--&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect <span style="color: #004993;">left</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">right</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">top</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">bottom</span>=<span style="color: #990000;">&quot;1&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>fill<span style="color: #000000; font-weight: bold;">&gt;</span>
            <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>LinearGradient <span style="color: #004993;">rotation</span>=<span style="color: #990000;">&quot;270&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
                <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>GradientEntry <span style="color: #004993;">color</span>=<span style="color: #990000;">&quot;0x000000&quot;</span> ratio=<span style="color: #990000;">&quot;0.0&quot;</span> <span style="color: #004993;">alpha</span>=<span style="color: #990000;">&quot;0.0627&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
                <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>GradientEntry <span style="color: #004993;">color</span>=<span style="color: #990000;">&quot;0x000000&quot;</span> ratio=<span style="color: #990000;">&quot;0.48&quot;</span> <span style="color: #004993;">alpha</span>=<span style="color: #990000;">&quot;0.0099&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
                <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>GradientEntry <span style="color: #004993;">color</span>=<span style="color: #990000;">&quot;0x000000&quot;</span> ratio=<span style="color: #990000;">&quot;0.48001&quot;</span> <span style="color: #004993;">alpha</span>=<span style="color: #990000;">&quot;0&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
            <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>LinearGradient<span style="color: #000000; font-weight: bold;">&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>fill<span style="color: #000000; font-weight: bold;">&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">&lt;!--</span> layer <span style="color: #000000; font-weight:bold;">5</span><span style="color: #000000; font-weight: bold;">:</span> fill highlight <span style="color: #000000; font-weight: bold;">--&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect <span style="color: #004993;">left</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">right</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">top</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">bottom</span>=<span style="color: #990000;">&quot;1&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>fill<span style="color: #000000; font-weight: bold;">&gt;</span>
            <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>LinearGradient <span style="color: #004993;">rotation</span>=<span style="color: #990000;">&quot;90&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
                <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>GradientEntry <span style="color: #004993;">color</span>=<span style="color: #990000;">&quot;0xFFFFFF&quot;</span>
                                 ratio=<span style="color: #990000;">&quot;0.0&quot;</span>
                                 <span style="color: #004993;">alpha</span>=<span style="color: #990000;">&quot;0.33&quot;</span> 
                                 <span style="color: #004993;">alpha</span>.over=<span style="color: #990000;">&quot;0.22&quot;</span> 
                                 <span style="color: #004993;">alpha</span>.down=<span style="color: #990000;">&quot;0.12&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span>
                <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>GradientEntry <span style="color: #004993;">color</span>=<span style="color: #990000;">&quot;0xFFFFFF&quot;</span>
                                 ratio=<span style="color: #990000;">&quot;0.48&quot;</span>
                                 <span style="color: #004993;">alpha</span>=<span style="color: #990000;">&quot;0.33&quot;</span>
                                 <span style="color: #004993;">alpha</span>.over=<span style="color: #990000;">&quot;0.22&quot;</span>
                                 <span style="color: #004993;">alpha</span>.down=<span style="color: #990000;">&quot;0.12&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
                <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>GradientEntry <span style="color: #004993;">color</span>=<span style="color: #990000;">&quot;0xFFFFFF&quot;</span>
                                 ratio=<span style="color: #990000;">&quot;0.48001&quot;</span>
                                 <span style="color: #004993;">alpha</span>=<span style="color: #990000;">&quot;0&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
            <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>LinearGradient<span style="color: #000000; font-weight: bold;">&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>fill<span style="color: #000000; font-weight: bold;">&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">&lt;!--</span> layer <span style="color: #000000; font-weight:bold;">6</span><span style="color: #000000; font-weight: bold;">:</span> highlight stroke <span style="color: #000000;">&#40;</span>all states except down<span style="color: #000000;">&#41;</span> <span style="color: #000000; font-weight: bold;">--&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect <span style="color: #004993;">left</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">right</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">top</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">bottom</span>=<span style="color: #990000;">&quot;1&quot;</span> excludeFrom=<span style="color: #990000;">&quot;down&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>stroke<span style="color: #000000; font-weight: bold;">&gt;</span>
            <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>LinearGradientStroke <span style="color: #004993;">rotation</span>=<span style="color: #990000;">&quot;90&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
                <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>GradientEntry <span style="color: #004993;">color</span>=<span style="color: #990000;">&quot;0xFFFFFF&quot;</span> <span style="color: #004993;">alpha</span>.over=<span style="color: #990000;">&quot;0.22&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
                <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>GradientEntry <span style="color: #004993;">color</span>=<span style="color: #990000;">&quot;0xD8D8D8&quot;</span> <span style="color: #004993;">alpha</span>.over=<span style="color: #990000;">&quot;0.22&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
            <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>LinearGradientStroke<span style="color: #000000; font-weight: bold;">&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>stroke<span style="color: #000000; font-weight: bold;">&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">&lt;!--</span> layer <span style="color: #000000; font-weight:bold;">6</span><span style="color: #000000; font-weight: bold;">:</span> highlight stroke <span style="color: #000000;">&#40;</span>down state only<span style="color: #000000;">&#41;</span> <span style="color: #000000; font-weight: bold;">--&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect <span style="color: #004993;">left</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">top</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">bottom</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;1&quot;</span> includeIn=<span style="color: #990000;">&quot;down&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>fill<span style="color: #000000; font-weight: bold;">&gt;</span>
            <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>SolidColor <span style="color: #004993;">color</span>=<span style="color: #990000;">&quot;0x000000&quot;</span> <span style="color: #004993;">alpha</span>=<span style="color: #990000;">&quot;0.07&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>fill<span style="color: #000000; font-weight: bold;">&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect<span style="color: #000000; font-weight: bold;">&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect <span style="color: #004993;">right</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">top</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">bottom</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;1&quot;</span> includeIn=<span style="color: #990000;">&quot;down&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>fill<span style="color: #000000; font-weight: bold;">&gt;</span>
            <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>SolidColor <span style="color: #004993;">color</span>=<span style="color: #990000;">&quot;0x000000&quot;</span> <span style="color: #004993;">alpha</span>=<span style="color: #990000;">&quot;0.07&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>fill<span style="color: #000000; font-weight: bold;">&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect<span style="color: #000000; font-weight: bold;">&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect <span style="color: #004993;">left</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">top</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">right</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;1&quot;</span> includeIn=<span style="color: #990000;">&quot;down&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>fill<span style="color: #000000; font-weight: bold;">&gt;</span>
            <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>SolidColor <span style="color: #004993;">color</span>=<span style="color: #990000;">&quot;0x000000&quot;</span> <span style="color: #004993;">alpha</span>=<span style="color: #990000;">&quot;0.25&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>fill<span style="color: #000000; font-weight: bold;">&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect<span style="color: #000000; font-weight: bold;">&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect <span style="color: #004993;">left</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">top</span>=<span style="color: #990000;">&quot;2&quot;</span> <span style="color: #004993;">right</span>=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;1&quot;</span> includeIn=<span style="color: #990000;">&quot;down&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>fill<span style="color: #000000; font-weight: bold;">&gt;</span>
            <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>SolidColor <span style="color: #004993;">color</span>=<span style="color: #990000;">&quot;0x000000&quot;</span> <span style="color: #004993;">alpha</span>=<span style="color: #990000;">&quot;0.09&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>fill<span style="color: #000000; font-weight: bold;">&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">&lt;!--</span> layer <span style="color: #000000; font-weight:bold;">2</span><span style="color: #000000; font-weight: bold;">:</span> <span style="color: #004993;">border</span> <span style="color: #000000; font-weight: bold;">--&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect <span style="color: #004993;">left</span>=<span style="color: #990000;">&quot;0&quot;</span> <span style="color: #004993;">right</span>=<span style="color: #990000;">&quot;0&quot;</span> <span style="color: #004993;">top</span>=<span style="color: #990000;">&quot;0&quot;</span> <span style="color: #004993;">bottom</span>=<span style="color: #990000;">&quot;0&quot;</span> <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;69&quot;</span> <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;20&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>stroke<span style="color: #000000; font-weight: bold;">&gt;</span>
            <span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>SolidColorStroke <span style="color: #004993;">color</span>=<span style="color: #990000;">&quot;0x696969&quot;</span> 
                        <span style="color: #004993;">alpha</span>=<span style="color: #990000;">&quot;1&quot;</span> 
                        <span style="color: #004993;">alpha</span>.over=<span style="color: #990000;">&quot;1&quot;</span> 
                        <span style="color: #004993;">alpha</span>.down=<span style="color: #990000;">&quot;1&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>stroke<span style="color: #000000; font-weight: bold;">&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>Rect<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>SparkSkin<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p><strong>Demo :</strong><br />
<iframe src="http://www.theflashbuilder.com/flashs/accordion-skin/Blog.html" width="470px" height="250px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theflashbuilder.com/accordion-skin-style.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Icons to Accordion</title>
		<link>http://www.theflashbuilder.com/icons-to-accordion.html</link>
		<comments>http://www.theflashbuilder.com/icons-to-accordion.html#comments</comments>
		<pubDate>Sun, 11 Apr 2010 06:53:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[<mx:Accordion>]]></category>
		<category><![CDATA[accordion]]></category>
		<category><![CDATA[adding icon]]></category>
		<category><![CDATA[ApplicationControlBar]]></category>
		<category><![CDATA[DataGrid]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.theflashbuilder.com/?p=77</guid>
		<description><![CDATA[You could adding icons to accordion witouth headerrender. Turkish: Accordion menuye icon eklemek için header render kullanmak zorunda değilsiniz.Aşağıdaki örneklede ekleyebilirsiniz. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;s:Application xmlns:d=&#34;http://ns.adobe.com/fxg/2008/dt&#34; xmlns:fx=&#34;http://ns.adobe.com/mxml/2009&#34; xmlns:s=&#34;library://ns.adobe.com/flex/spark&#34; xmlns:mx=&#34;library://ns.adobe.com/flex/mx&#34;&#62; &#60;s:layout&#62; &#60;s:VerticalLayout/&#62; &#60;/s:layout&#62; &#160; &#160; &#160; &#60;fx:Script&#62; &#60;!&#91;CDATA&#91; &#91;Bindable&#93; &#91;Embed&#40;source=&#34;menu1.png&#34;&#41;&#93; private var BulletCheck:Class; &#160; &#91;Bindable&#93; &#91;Embed&#40;source=&#34;menu2.png&#34;&#41;&#93; private var BulletWarning:Class; &#160; &#91;Bindable&#93; &#91;Embed&#40;source=&#34;menu3.png&#34;&#41;&#93; private var BulletCritical:Class; &#93;&#93;&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>You could adding icons to accordion witouth headerrender.</p>
<p>Turkish:<br />
Accordion menuye icon eklemek için header render kullanmak zorunda değilsiniz.Aşağıdaki örneklede ekleyebilirsiniz.</p>
<p><span id="more-77"></span></p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?</span>xml <span style="color: #004993;">version</span>=<span style="color: #990000;">&quot;1.0&quot;</span> encoding=<span style="color: #990000;">&quot;utf-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Application xmlns<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">d</span>=<span style="color: #990000;">&quot;http://ns.adobe.com/fxg/2008/dt&quot;</span> 
			   xmlns<span style="color: #000000; font-weight: bold;">:</span>fx=<span style="color: #990000;">&quot;http://ns.adobe.com/mxml/2009&quot;</span> 
			   xmlns<span style="color: #000000; font-weight: bold;">:</span>s=<span style="color: #990000;">&quot;library://ns.adobe.com/flex/spark&quot;</span> 
			   xmlns<span style="color: #000000; font-weight: bold;">:</span>mx=<span style="color: #990000;">&quot;library://ns.adobe.com/flex/mx&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>layout<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>VerticalLayout<span style="color: #000000; font-weight: bold;">/&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>layout<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
&nbsp;
&nbsp;
		<span style="color: #000000; font-weight: bold;">&lt;</span>fx<span style="color: #000000; font-weight: bold;">:</span>Script<span style="color: #000000; font-weight: bold;">&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;!</span><span style="color: #000000;">&#91;</span>CDATA<span style="color: #000000;">&#91;</span>
			<span style="color: #000000;">&#91;</span>Bindable<span style="color: #000000;">&#93;</span>
			<span style="color: #000000;">&#91;</span>Embed<span style="color: #000000;">&#40;</span><span style="color: #004993;">source</span>=<span style="color: #990000;">&quot;menu1.png&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span>
			<span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #6699cc; font-weight: bold;">var</span> BulletCheck<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Class</span>;
&nbsp;
			<span style="color: #000000;">&#91;</span>Bindable<span style="color: #000000;">&#93;</span>
			<span style="color: #000000;">&#91;</span>Embed<span style="color: #000000;">&#40;</span><span style="color: #004993;">source</span>=<span style="color: #990000;">&quot;menu2.png&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span>
			<span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #6699cc; font-weight: bold;">var</span> BulletWarning<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Class</span>;
&nbsp;
			<span style="color: #000000;">&#91;</span>Bindable<span style="color: #000000;">&#93;</span>
			<span style="color: #000000;">&#91;</span>Embed<span style="color: #000000;">&#40;</span><span style="color: #004993;">source</span>=<span style="color: #990000;">&quot;menu3.png&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span>
			<span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #6699cc; font-weight: bold;">var</span> BulletCritical<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Class</span>;
			<span style="color: #000000;">&#93;</span><span style="color: #000000;">&#93;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;/</span>fx<span style="color: #000000; font-weight: bold;">:</span>Script<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;</span>fx<span style="color: #000000; font-weight: bold;">:</span>Declarations<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
		<span style="color: #000000; font-weight: bold;">&lt;</span>fx<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">XML</span> id=<span style="color: #990000;">&quot;itemsXML&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;</span>items<span style="color: #000000; font-weight: bold;">&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>item label=<span style="color: #990000;">&quot;Item 1&quot;</span> <span style="color: #004993;">status</span>=<span style="color: #990000;">&quot;warning&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>item label=<span style="color: #990000;">&quot;Item 2&quot;</span> <span style="color: #004993;">status</span>=<span style="color: #990000;">&quot;critical&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>item label=<span style="color: #990000;">&quot;Item 3&quot;</span> <span style="color: #004993;">status</span>=<span style="color: #990000;">&quot;critical&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>item label=<span style="color: #990000;">&quot;Item 4&quot;</span> <span style="color: #004993;">status</span>=<span style="color: #990000;">&quot;check&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>item label=<span style="color: #990000;">&quot;Item 5&quot;</span> <span style="color: #004993;">status</span>=<span style="color: #990000;">&quot;warning&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>item label=<span style="color: #990000;">&quot;Item 6&quot;</span> <span style="color: #004993;">status</span>=<span style="color: #990000;">&quot;check&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>item label=<span style="color: #990000;">&quot;Item 7&quot;</span> <span style="color: #004993;">status</span>=<span style="color: #990000;">&quot;check&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>item label=<span style="color: #990000;">&quot;Item 8&quot;</span> <span style="color: #004993;">status</span>=<span style="color: #990000;">&quot;critical&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;/</span>items<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;/</span>fx<span style="color: #000000; font-weight: bold;">:</span>XML<span style="color: #000000; font-weight: bold;">&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;/</span>fx<span style="color: #000000; font-weight: bold;">:</span>Declarations<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
		<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>ApplicationControlBar dock=<span style="color: #990000;">&quot;true&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>Label <span style="color: #004993;">text</span>=<span style="color: #990000;">&quot;selectedIndex: {accordion.selectedIndex}&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>Spacer <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;100&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>Label <span style="color: #004993;">text</span>=<span style="color: #990000;">&quot;label: {accordion.getHeaderAt(accordion.selectedIndex).label}&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>ApplicationControlBar<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
		<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>Accordion id=<span style="color: #990000;">&quot;accordion&quot;</span>
					  <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;400&quot;</span>
					  <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;200&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>VBox label=<span style="color: #990000;">&quot;Success&quot;</span>
					 icon=<span style="color: #990000;">&quot;{BulletCheck}&quot;</span>
					 <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;100%&quot;</span>
					 <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;100%&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>DataGrid id=<span style="color: #990000;">&quot;successGrid&quot;</span>
							 dataProvider=<span style="color: #990000;">&quot;{itemsXML.item.(@status == 'check')}&quot;</span>
							 <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;100%&quot;</span>
							 <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;100%&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>DataGrid<span style="color: #000000; font-weight: bold;">&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>VBox<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
			<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>VBox label=<span style="color: #990000;">&quot;Warning&quot;</span>
					 icon=<span style="color: #990000;">&quot;{BulletWarning}&quot;</span>
					 <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;100%&quot;</span>
					 <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;100%&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>DataGrid id=<span style="color: #990000;">&quot;warningGrid&quot;</span>
							 dataProvider=<span style="color: #990000;">&quot;{itemsXML.item.(@status == 'warning')}&quot;</span>
							 <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;100%&quot;</span>
							 <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;100%&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>DataGrid<span style="color: #000000; font-weight: bold;">&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>VBox<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
			<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>VBox label=<span style="color: #990000;">&quot;Critical&quot;</span>
					 icon=<span style="color: #990000;">&quot;{BulletCritical}&quot;</span>
					 <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;100%&quot;</span>
					 <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;100%&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>DataGrid id=<span style="color: #990000;">&quot;criticalGrid&quot;</span>
							 dataProvider=<span style="color: #990000;">&quot;{itemsXML.item.(@status == 'critical')}&quot;</span>
							 <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;100%&quot;</span>
							 <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;100%&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>DataGrid<span style="color: #000000; font-weight: bold;">&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>VBox<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>Accordion<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>Application<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p><strong>Demo :</strong><br />
<iframe src="http://www.theflashbuilder.com/flashs/accordion-icon/Blog.html" width="670px" height="275px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theflashbuilder.com/icons-to-accordion.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accordion Header Renderer Icon, Corner Radius</title>
		<link>http://www.theflashbuilder.com/accordion-header-renderer-icon-corner-radius.html</link>
		<comments>http://www.theflashbuilder.com/accordion-header-renderer-icon-corner-radius.html#comments</comments>
		<pubDate>Fri, 09 Apr 2010 20:10:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Genel - <s:Application>]]></category>
		<category><![CDATA[accordion]]></category>
		<category><![CDATA[headerRenderer]]></category>
		<category><![CDATA[mx:headerRenderer]]></category>

		<guid isPermaLink="false">http://www.theflashbuilder.com/?p=74</guid>
		<description><![CDATA[You can style the accordion via header renderer, i used a buton. You may use another things. Turkish Header renderer ile accordion menunun görünümünde değişiklik yapabiliriz &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;s:Application xmlns:d=&#34;http://ns.adobe.com/fxg/2008/dt&#34; xmlns:fx=&#34;http://ns.adobe.com/mxml/2009&#34; xmlns:s=&#34;library://ns.adobe.com/flex/spark&#34; xmlns:mx=&#34;library://ns.adobe.com/flex/mx&#34; &#160; backgroundColor=&#34;white&#34;&#62; &#160; &#60;s:layout&#62; &#60;s:VerticalLayout/&#62; &#60;/s:layout&#62; &#160; &#160; &#60;fx:Script&#62; &#60;!&#91;CDATA&#91; &#91;Bindable&#93; &#91;Embed&#40;source=&#34;menu1.png&#34;&#41;&#93; private var Menu3:Class; &#160; &#91;Bindable&#93; &#91;Embed&#40;source=&#34;menu2.png&#34;&#41;&#93; private var Menu2:Class; [...]]]></description>
			<content:encoded><![CDATA[<p>You can style the accordion via header renderer, i used a buton. You may use another things.</p>
<p><em>Turkish</em><br />
Header renderer ile accordion menunun görünümünde değişiklik yapabiliriz<br />
<span id="more-74"></span></p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?</span>xml <span style="color: #004993;">version</span>=<span style="color: #990000;">&quot;1.0&quot;</span> encoding=<span style="color: #990000;">&quot;utf-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Application xmlns<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">d</span>=<span style="color: #990000;">&quot;http://ns.adobe.com/fxg/2008/dt&quot;</span> 
			   xmlns<span style="color: #000000; font-weight: bold;">:</span>fx=<span style="color: #990000;">&quot;http://ns.adobe.com/mxml/2009&quot;</span> 
			   xmlns<span style="color: #000000; font-weight: bold;">:</span>s=<span style="color: #990000;">&quot;library://ns.adobe.com/flex/spark&quot;</span> 
			   xmlns<span style="color: #000000; font-weight: bold;">:</span>mx=<span style="color: #990000;">&quot;library://ns.adobe.com/flex/mx&quot;</span> 
&nbsp;
				<span style="color: #004993;">backgroundColor</span>=<span style="color: #990000;">&quot;white&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>layout<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>VerticalLayout<span style="color: #000000; font-weight: bold;">/&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>layout<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;</span>fx<span style="color: #000000; font-weight: bold;">:</span>Script<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;!</span><span style="color: #000000;">&#91;</span>CDATA<span style="color: #000000;">&#91;</span>
			<span style="color: #000000;">&#91;</span>Bindable<span style="color: #000000;">&#93;</span>
			<span style="color: #000000;">&#91;</span>Embed<span style="color: #000000;">&#40;</span><span style="color: #004993;">source</span>=<span style="color: #990000;">&quot;menu1.png&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span>
			<span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #6699cc; font-weight: bold;">var</span> Menu3<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Class</span>;
&nbsp;
			<span style="color: #000000;">&#91;</span>Bindable<span style="color: #000000;">&#93;</span>
			<span style="color: #000000;">&#91;</span>Embed<span style="color: #000000;">&#40;</span><span style="color: #004993;">source</span>=<span style="color: #990000;">&quot;menu2.png&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span>
			<span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #6699cc; font-weight: bold;">var</span> Menu2<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Class</span>;
&nbsp;
			<span style="color: #000000;">&#91;</span>Bindable<span style="color: #000000;">&#93;</span>
			<span style="color: #000000;">&#91;</span>Embed<span style="color: #000000;">&#40;</span><span style="color: #004993;">source</span>=<span style="color: #990000;">&quot;menu3.png&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span>
			<span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #6699cc; font-weight: bold;">var</span> Menu1<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Class</span>;
&nbsp;
&nbsp;
		<span style="color: #000000;">&#93;</span><span style="color: #000000;">&#93;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;/</span>fx<span style="color: #000000; font-weight: bold;">:</span>Script<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>Accordion id=<span style="color: #990000;">&quot;accordion&quot;</span> backgroundAlpha=<span style="color: #990000;">&quot;1.0&quot;</span>
				  <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;100%&quot;</span>
				  <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;100%&quot;</span>
				  headerHeight=<span style="color: #990000;">&quot;32&quot;</span>
				  borderStyle=<span style="color: #990000;">&quot;none&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
		<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>headerRenderer<span style="color: #000000; font-weight: bold;">&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;</span>fx<span style="color: #000000; font-weight: bold;">:</span>Component<span style="color: #000000; font-weight: bold;">&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>mx<span style="color: #000000; font-weight: bold;">:</span>Button fontWeight=<span style="color: #990000;">&quot;normal&quot;</span>
						   labelPlacement=<span style="color: #990000;">&quot;left&quot;</span>
						   textAlign=<span style="color: #990000;">&quot;left&quot;</span>
						   cornerRadius=<span style="color: #990000;">&quot;20&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;/</span>fx<span style="color: #000000; font-weight: bold;">:</span>Component<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>headerRenderer<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
		<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>NavigatorContent label=<span style="color: #990000;">&quot;About Us&quot;</span> icon=<span style="color: #990000;">&quot;{Menu1}&quot;</span> <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;100%&quot;</span> <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;100%&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>VGroup <span style="color: #004993;">x</span>=<span style="color: #990000;">&quot;-1&quot;</span> <span style="color: #004993;">y</span>=<span style="color: #990000;">&quot;0&quot;</span> <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;199&quot;</span> <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;300&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Label <span style="color: #004993;">text</span>=<span style="color: #990000;">&quot;the flash builder / theflashbuilder.com&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>VGroup<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>NavigatorContent<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
&nbsp;
		<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>NavigatorContent label=<span style="color: #990000;">&quot;Projects&quot;</span> icon=<span style="color: #990000;">&quot;{Menu2}&quot;</span> <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;100%&quot;</span> <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;100%&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>VGroup <span style="color: #004993;">x</span>=<span style="color: #990000;">&quot;-1&quot;</span> <span style="color: #004993;">y</span>=<span style="color: #990000;">&quot;0&quot;</span> <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;199&quot;</span> <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;300&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Label <span style="color: #004993;">text</span>=<span style="color: #990000;">&quot;the flash builder / theflashbuilder.com&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>VGroup<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>NavigatorContent<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
		<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>NavigatorContent label=<span style="color: #990000;">&quot;Demo&quot;</span> icon=<span style="color: #990000;">&quot;{Menu3}&quot;</span> <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;100%&quot;</span> <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;100%&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>VGroup <span style="color: #004993;">x</span>=<span style="color: #990000;">&quot;-1&quot;</span> <span style="color: #004993;">y</span>=<span style="color: #990000;">&quot;0&quot;</span> <span style="color: #004993;">width</span>=<span style="color: #990000;">&quot;199&quot;</span> <span style="color: #004993;">height</span>=<span style="color: #990000;">&quot;300&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;</span>s<span style="color: #000000; font-weight: bold;">:</span>Label <span style="color: #004993;">text</span>=<span style="color: #990000;">&quot;the flash builder / theflashbuilder.com&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span>
			<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>VGroup<span style="color: #000000; font-weight: bold;">&gt;</span>
		<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>NavigatorContent<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;/</span>mx<span style="color: #000000; font-weight: bold;">:</span>Accordion<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;/</span>s<span style="color: #000000; font-weight: bold;">:</span>Application<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p><strong>Demo :</strong><br />
<iframe src="http://www.theflashbuilder.com/flashs/accordion-buton-style/Blog.html" width="670px" height="275px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theflashbuilder.com/accordion-header-renderer-icon-corner-radius.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
