목록Flex General (118)
Enterprise APP
http://www.dgrigg.com/post.cfm/03/25/2010/Flex-Spark-application-background-alpha Step 1: modify the default application. Add a new style property using the fx:Metadata tags and tell the application to use the new skin class you are about to create with the 'skinClass' attribute. [Style(name="backgroundAlpha",type="Number",default="0")] Step 2: set the new 'backgroundAlpha' style value to whatev..
http://devgirl.wordpress.com/2009/07/14/livecycle-data-services-channels-and-endpoints-explained/ LiveCycle Data Services – Channels and Endpoints Explained! As a follow-up to my LCDS Quick Start Guide, I wanted to offer more in-depth information about using channels and endpoints with your LiveCycle Data Services application. What is a channel and what is an endpoint ultimately? A ‘channel’ is ..
http://www.dan-menard.com/2010/03/29/improving-performance-in-flex-and-scaling-blazeds/ Improving Performance in Flex and Scaling BlazeDS I gave a talk today at work about Flex and BlazeDS, and in particular how to scale both to perform well during high-volume, real-time communication with a Java-based server (in the area of thousands of messages per second). Here are the most helpful bits from ..
http://shardulbartwal.wordpress.com/2010/09/05/using-background-image-in-flex-4-components/ iPhone 에서 작성된 글입니다.
http://www.eonflex.com/?p=458 iPhone 에서 작성된 글입니다.
var agTYHTML:Label = new Label();//TextArea, Text... var str:String = StringUtil.substitute("최저연령 기준으로 {0}께서는 {1}에 해당합니다.", driverInfo.name, driverInfo.ageTY); agTYHTML.htmlText = str; agTYHTML.regenerateStyleCache( false ); var textMetrics:TextLineMetrics = agTYHTML.measureHTMLText(str); var textWidth:int = textMetrics.width; agTYHTML.width = textWidth + 15; bottomTY.addElement(agTYHTML);
List: ComboBox: comboBox.dropdown.setStyle("useRollOver", false);
]]>
xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" creationComplete="application1_creationCompleteHandler(event)" > import mx.collections.ArrayCollection; import mx.events.CollectionEvent; import mx.events.FlexEvent; [Bindable] private var ac:ArrayCollection = new ArrayCo..