flex点滴3

1.处理位图图像的主要 ActionScript 3.0 类是 Bitmap 类(用于在屏幕上显示位图图像)和 BitmapData 类(用于访问和操作位图的原始图像数据)。
若要在屏幕上呈现新创建的 BitmapData 对象,请将此对象分配给或包装到 Bitmap 实例中。为此,可以作为 Bitmap 对象的构造函数的参数形式传递 BitmapData 对象,也可以将此对象分配给现有 Bitmap 实例的 bitmapData 属性。您还必须通过调用将包含该 Bitmap 实例的显示对象容器的 addChild() 或 addChildAt() 方法将该 Bitmap 实例添加到显示列表中。

var bitmap:Bitmap = new Bitmap(data);

2.flex session
HttpRequest r=FlexContext.getHttpRequest();
r.getSession();

3.<mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" theme="panther.swc">

4.<mx:Image source="http://wpa.qq.com/pa?p=1:你的号码:7" click="navigateToURL(new URLRequest(tencent://message/?uin=你的号码&Site=网站名称&Menu=yes'),'_blank')" toolTip="服务技术支持"/>

5.flash.events.ContextMenuEvent.MENU_SELECT

在用户首次生成上下文菜单但尚未显示上下文菜单内容时调度。 这将允许您的程序在显示菜单之前修改上下文菜单项集。 用户通过右键单击指针设备来生成上下文菜单

6.转图片的代码

public function copyClick():void{
                    var encoder:JPGEncoder = new JPGEncoder(80);
                    var bytes:ByteArray = encoder.encode(getBitmapData());
                    var request:URLRequest = new URLRequest(UPLOAD_PAGE);   

                    request.data = bytes;   
                    request.method = URLRequestMethod.POST;   

                    request.contentType = "application/octet-stream";   
               
                    var loader:URLLoader = new URLLoader();            
                    loader.addEventListener(Event.COMPLETE, completeHandler);
                    loader.load(request);       

}

7.字符串转成类名来new一个对象
var myClass:Class = getDefinitionByName("类名") as Class;
new myClass();

8.button1.addEventListener(MouseEvent.CLICK,ToBaidu)
function ToBaidu(event:MouseEvent){
        var lj1:URLRequest=new URLRequest("http://www.baidu.com")//获取网址
        navigateToURL(lj1,"_blank")//在新窗口打开网页
}


9.多个loader
串行载入。一个载入完成后继续载下一个。
或者干脆用BulkLoader吧。

10.<mx:Text  opaqueBackground="#ff9900" text="this is just a test"/>
<mx:Label opaqueBackground="#ff9900" text="test"/>

11.flex 背景图片平铺
Application {
  backgroundImage: Embed(source="assets/backgrounds.swf#retroFifties");
  backgroundSize: 100%;
}

12.texfield自动换行  textField.wordWrap=true

13 ActionScript技术群     ①群:58318626     ②群:58736187     ③群:47271501     ④群:59261734
北京ActionScript圈:80478454

你可能感兴趣的:(Flex,Flash,actionscript)