Flex Builder 3 下载安装与注册
Flex Builder 3 正式版,发布于中国时间 2008 年
2 月 25 日;
下载地址一:
http://download.macromedia.com/pub/flex
/flex
_builder/FB3_win.exe
大小: 424 MB ;未进行压缩的 Flex Builder 3 安装文件
不用注
册登录,可以直接下载。
下载地址二:
http://tria
ls.adobe.com/Applications/.../FB3_WWEJ.exe
大小: 385.84
MB ; 已经压缩的 Flex Builder 3 安装文件
需要注册登录,才可下载。
Flex builder 3.0注册码(已经试过的,可用的):
1377-4168-2018-0771-2432-1495
1377-4760-3354-0772-2773-8996
1377-4165-2080-7265-7813-8901
1377-4964-5021-8182-2399-8235
Flex builder 中要进行调试,就必须安装含debug的flash
player版本。下载链接地址:
Adobe Flash Player 9 —
Debugger Versions (aka debug players or content debuggers) for Flex and
Flash Developers
12/3/2007
Updated debugger versions of Flash Player 9 (aka debug players or
content debuggers) are available for Flex Builder 2 users and Flash CS3
Professional users. These new players are version 9.0.r115.
Download the
Windows Flash Player 9 ActiveX control content debugger (for IE)
(EXE, 1.59 MB)
Download the
Windows Flash Player 9 Plugin content debugger (for Netscape-compatible
browsers)
(EXE, 1.56 MB)
Download the
Windows Flash Player 9 Projector content debugger
(EXE, 3.69 MB)
Download the
Macintosh Flash Player 9 Plugin content debugger (Intel-based Macs)
(DMG, 5.35 MB)
Download the
Macintosh Flash Player 9 Plugin content debugger (PowerPC-based Macs)
(DMG, 2.41 MB)
Download the
Macintosh Flash Player 9 Projector content debugger
(ZIP, 4.81 MB)
12/3/2007
Updated Linux debugger versions (aka debug players or content
debuggers) of Flash Player 9 are now available. Additionally, the Linux
standalone player (projector) is available for developers who wish to
publish projectors on Linux operating systems.
Download the Linux
debugger and standalone players
(TAR.GZ, 9.29 MB)
相关文档:
一:直接设置
二:画面上设置:
如:
<mx:Style>
TextArea{
font-size:36px
font-weight: bold
}
</mx:Style>
三:使用外置文件
<mx:Style source="style.csss"/> ......
一是画面mxml中直接嵌入,很像js的使用方式
如
<mx:Script>
<![CDATA[
public function showTxt():void
{
mytxt.text="Hello Flex baby!"
}
]]>
< ......
Flex3样式设计工具(Flex Explorer) 说明:
Flex Explorer非常适合初学者使用,他可以让你快速上手FLEX设计。AIRIA
将 Flex3 component Explorer ,Flex Style Explorer,Flex Filter Explorer,Flex Primitive Explorer打包提供下载。其中 Flex3 component Explorer
包含了FLEX经 ......
基本事件处理
用于指定为响应特定事件而应执行的特定操作的技术称为事件处理。在编写执行事件处理的 ActionScript 代码时,您需要识
别三个重要元素:
• 事件源:发生该事件的是哪个对象?例如,哪个按钮会被单击,或哪个 Loader 对象正在加载图像?事件源也称为事件目
标,因为 Flash Player 或 AIR 将此对象作为 ......
//1.复制内容到系统剪贴板
System.setClipboard(strContent);
//2.复制一个ArrayCollection
//dummy solution( well, it works )
var bar:ArrayCollection = new ArrayCollection();
for each ( var i:Object in ac ){
bar.addItem( i ); }
// fantastic ! //
var bar:ListCollecti ......