<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Flash Builder Örnekleri</title>
	<link>http://www.theflashbuilder.com</link>
	<description>Flash Builder ( Flex 4 ) Makaleleri</description>
	<lastBuildDate>Wed, 28 Jul 2010 06:34:24 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0.1" -->

	<item>
		<title>Flex&#8217;te Module #1009 Error Code</title>
		<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>
		<link>http://www.theflashbuilder.com/flexte-module-1009-error-code.html</link>
			</item>
	<item>
		<title>As3 Email Validation ( Regex )</title>
		<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>
		<link>http://www.theflashbuilder.com/as3-email-validationas3-email-validation-regex.html</link>
			</item>
	<item>
		<title>ColorPicker an Array of color, label, and description</title>
		<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>
		<link>http://www.theflashbuilder.com/colorpicker-an-array-of-color-label-and-description.html</link>
			</item>
	<item>
		<title>ColorPicker change, open, close events</title>
		<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>
		<link>http://www.theflashbuilder.com/colorpicker-change-open-close-events.html</link>
			</item>
	<item>
		<title>ColorPicker DataProvider</title>
		<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>
		<link>http://www.theflashbuilder.com/colorpicker-dataprovider.html</link>
			</item>
	<item>
		<title>Spinner and allowValueWrap</title>
		<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>
		<link>http://www.theflashbuilder.com/spinner-and-allowvaluewrap.html</link>
			</item>
	<item>
		<title>PopUpMenuButton with labelFunction</title>
		<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>
		<link>http://www.theflashbuilder.com/popupmenubutton-with-labelfunction.html</link>
			</item>
	<item>
		<title>Accordion Skin Style</title>
		<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>
		<link>http://www.theflashbuilder.com/accordion-skin-style.html</link>
			</item>
	<item>
		<title>Icons to Accordion</title>
		<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>
		<link>http://www.theflashbuilder.com/icons-to-accordion.html</link>
			</item>
	<item>
		<title>Accordion Header Renderer Icon, Corner Radius</title>
		<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>
		<link>http://www.theflashbuilder.com/accordion-header-renderer-icon-corner-radius.html</link>
			</item>
</channel>
</rss>
