随笔分类 - 03.Flex ActionScript
摘要:http://files.cnblogs.com/wucg/Demo_AS3_Flex_CafeTownsend.zip
阅读全文
摘要:<?xml version="1.0" encoding="utf-8"?><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" verticalAlign="middle" backgroundColor="white"> <mx:Script> <![CDATA[ import mx.utils.StringUtil; import
阅读全文
摘要:http://stackoverflow.com/questions/1408729/flex-datagrid-with-combobox-itemrenderer<?xml version="1.0" encoding="utf-8"?><mx:ComboBox xmlns:mx="http://www.adobe.com/2006/mxml" dataChange="setSelected()" change="onSelectionChange(event)" focu
阅读全文
摘要:http://code.google.com/p/flexlib/wiki/ComponentListFlexlibYou should take a look at the SuperTabNavigator component from theFlexLibproject:SuperTabNavigator exampleSuperTabNavigator documentationFlexLib Component listIf you don't want all of the tabs to have close buttons (I understand from the
阅读全文
摘要:在axis2的\WEB-INF\services目录下,建立文件myWebService.aar,包含以下\META-INF\services.xml\lib法1:以spring bean方式<serviceGroup> <service name="myWebService" > <description>Spring aware</description> <parameter name="ServiceObjectSupplier"> org.apache.axis2.extensions
阅读全文
摘要:===============corelib===============The corelib project consists of several basic utilities for MD5 hashing, JSON serialization, advanced string and date parsing, and more.Project Page: http://code.google.com/p/as3corelib/Project Group: http://groups.google.com/group/as3corelibAuthors: Christian Ca
阅读全文
摘要:PureMVC download:http://trac.puremvc.org/PureMVC_AS3/wiki/DownloadsPureMVC Standard for AS3http://trac.puremvc.org/PureMVC_AS3Demo_AS3_Flex_AppSkeletonhttp://trac.puremvc.org/Demo_AS3_Flex_AppSkeleton/wiki/Downloads
阅读全文
摘要:from:Flex与ActionScript3.0程序开发<?xml version="1.0" encoding="utf-8"?><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" minWidth="955" minHeight="600" width="467" height="486"> <mx:t
阅读全文
摘要:http://mysticnomad.wordpress.com/2008/03/21/difference-between-eventtarget-and-eventcurrenttarget-properties-in-an-event-object/In Flex, an event object is created whenever an event is dispatched. The event object has two important properties – event.target and event.currentTarget.The event.target p
阅读全文
摘要:http://sourceforge.net/adobe/cairngorm/home/Established by Adobe Technical Services and partners, Cairngorm presents the foundations on how we deliver successful enterprise Flex and AIR projects.The latestCairngorm 3consists of:Guidelinesthat describe client-side architecture, automated testing and
阅读全文
摘要:<?xml version="1.0" encoding="utf-8"?><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" minWidth="955" minHeight="600"> <mx:Script> <![CDATA[ import mx.collections.ArrayCollection; [Bindable] p
阅读全文
摘要:http://www.adobe.com/devnet/flex/documentation.htmlhttp://www.adobe.com/support/documentation/en/flex/flex3.html
阅读全文
摘要:Service1.asmx.csusing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Services;namespace TestWebServiceForFlex{ /// <summary> /// Service1 的摘要说明 /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(Conform
阅读全文
摘要:from:http://bbs.airia.cn/forum-viewthread-tid-44906-highlight.html当Array的数据发生变化的时候,用它作为数据源的控件不能感知这种变化。例如:myArray.push(“new value”); 这时,如果一个List用它作为dataProvider,List的列表中不会增加新加入的这个值。而当ArrayCollection的数据发生变化的时候,能够通知控件发生变化。例如:myArrayCollection.addItem(“new item”); 这时,如果一个控件List用它作为dataProvider,List列表中会增
阅读全文