Archive for the 'flex' Category

PureMVC的中文版’Best Practices’

May 21st, 2008

PureMVC的Best Practices文档有了中文版,点这里下载.


Adobe Flex Builder 3 Pro免费教育版

March 4th, 2008

Adobe Flex Builder 3 Pro 免费向有资格的教育机构的教员和学生提供。Adobe Flex Builder 3 Pro is available for free to students and faculty of eligible education institutions.在这里申请序列号:http://www.flexregistration.com/,需要上传一张学生证的图片(gif或pdf)。刚申请了,不知道有资格否。补:没想到还不到半天就发来了序列号,还以为要等上几天呢,看图,左下角已经没有过期提示了:


Vista下调试Flex程序的问题

March 2nd, 2008

把系统换成Windows Server 2008后,在flash player里按F11调试Flex程序时经常出现下面这个对话框: 意思就是提示你另外还有一个Flash debugger正在运行,但是明明就没有嘛,任务管理器里也没有相应的进程,而且把Flex Builder关掉重启之后仍然不能调试,只有将系统重启(或者注销)后才能解决。Google了一下,还没找到解决的办法,不过我还是摸索出了一条,就是当在flash player里进行调试时,不要直接关闭flash player的窗口,而要在flex builder里点击Console窗口上的终止按钮来终止调试:  至少截至到发稿时这样做还没出现问题。


装起了Flex Builder 3.0正式版

February 26th, 2008

教育网的网速真恶心,下了一天都没下下来,最后还是dudu帮忙下下来的。免费试用60天。


Apply a remove effect to a PopUp window

February 18th, 2008

Example: swfobject.embedSWF(”http://blog.dormforce.net/mybeky/wp-content/themes/k2/swf/PopUpEffect.swf”, “popupeffect”, “500″, “200″, “9.0.0″); Source:<?xml version=”1.0″ encoding=”utf-8″?><mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml” layout=”absolute” width=”500″ height=”200″ backgroundColor=”0xffffff” applicationComplete=”init()”> <mx:Script> <![CDATA[ import mx.events.EffectEvent; import mx.effects.Fade; import mx.managers.PopUpManager; import mx.controls.Image;
[...]