
Flex
一只小飞鱼
这个作者很懒,什么都没留下…
展开
-
《devguide_flex3.pdf》 note (chapter1)
Chapter 1: Developing Applications in MXML The tag defines the Appli-cation container that is always the root tag of a Flex application You can use the UTF-8 encoding format to ensure maxim原创 2008-11-06 18:06:00 · 981 阅读 · 0 评论 -
flash player 安全性设置
http://www.macromedia.com/support/documentation/cn/flashplayer/help/settings_manager03.html原创 2009-11-20 13:12:00 · 1167 阅读 · 0 评论 -
手形鼠标
var label:Label = new Label();label.buttonMode = true;label.useHandCursor = true;label.mouseChildren = false;转载 2009-05-27 09:22:00 · 916 阅读 · 2 评论 -
把Flash Player10卸载干净
删除注册表里面的 HKEY_LOCAL_MACHINE/SOFTWARE/Macromedia/FlashPlayer/SafeVersions原创 2009-03-30 17:47:00 · 3026 阅读 · 0 评论 -
去掉Tree前面的箭头
defaultLeafIcon="@Embed(source=../../../resource/images/tree/leaf.gif)"disclosureOpenIcon="@Embed(source=../../../resource/images/tree/open.gif)" disclosureClosedIcon="@Embed(source=../../../reso原创 2008-12-19 11:32:00 · 3159 阅读 · 0 评论 -
添加Module
右键project > properties > Flex Modules原创 2008-12-10 16:54:00 · 740 阅读 · 0 评论 -
Note - Chapter 13: Introducing Containers
【container】Adobe?Flex?provides a wide variety of containers,ranging from simple boxes through panels and forms, to elements such as accordions or tabbed navigators that provide built-in navigation amo原创 2008-12-07 18:16:00 · 854 阅读 · 0 评论 -
建立flex 工程的注意事项
1、web.xml引入 services-config.xml MessageBrokerServlet flex.messaging.MessageBrokerServlet services.configuration.file /WEB-INF/flex/services-config.xml原创 2009-01-13 16:31:00 · 1893 阅读 · 0 评论 -
FLEX内存释放优化原则
FLEX内存释放优化原则:1. 被删除对象在外部的所有引用一定要被删除干净才能被系统当成垃圾回收处理掉; 2. 父对象内部的子对象被外部其他对象引用了,会导致此子对象不会被删除,子对象不会被删除又会导致了父对象不会被删除; 3. 如果一个对象中引用了外部对象,当自己被删除或者不需要使用此引用对象时,一定要记得把此对象的引用设置为null; 4. 本对象删除不了的原因不一定是自己被引用了,也有可转载 2009-01-13 13:58:00 · 4583 阅读 · 0 评论 -
Flex3 Profile的使用
转自 :http://www.asarea.cn/showdiary.jsp?id=162 今天用了一下flex的profile,flex的profile就是一个性能监测器,也是adobe向传统编程人员提供的flash编程又一利器。1.profile大致是跟flashplayer进行通讯,每隔1ms左右的时间进行一次快照,获取被监测的正在运行的swf的性能相关数据。2.profile提供p转载 2009-01-13 13:49:00 · 3035 阅读 · 1 评论 -
chapter 13 Introducing Containers
【container】Adobe?Flex?provides a wide variety of containers,ranging from simple boxes through panels and forms, to elements such as accordions or tabbed navigators that provide built-in navigation amo原创 2009-01-13 09:24:00 · 784 阅读 · 0 评论 -
chapter29 Embedding Asset
Flex应用可以使用外部的asset,比如 image、sound、font。Although you can reference and load assets at run time, you often compile these assets into your applications.什么是Embedding Asset?The process of compiling an asse原创 2009-01-13 09:19:00 · 885 阅读 · 0 评论 -
FLEX增量编译
Flex Complier add argument : -incremental=true原创 2008-11-19 09:06:00 · 1077 阅读 · 1 评论 -
chapter9 Controls
=========================之 Progress Bar P318==================================【Progress Bar】The ProgressBar control provides a visual representation of the progress of a task over time。two types:A原创 2009-01-13 09:28:00 · 810 阅读 · 0 评论 -
flex 3 从页面url中取参数取值的完美解决方案
1:当用http://xxxxx/xxx.mxml?name=hermit方式访问 可以用this.parameters.name这种方式在flex里面取url参数 2:当用http://xxxxx/xxx.swf?name=hermit方式访问 可以用this.parameters.name这种方式在flex里面取url参数 3:当用http://xxxxx/xxx.html?name=转载 2009-12-02 09:33:00 · 1610 阅读 · 1 评论