2007/08/26 | addEventListener注册事件进行传递参数的方法(AS3)
类别(flash学习) | 评论(3) | 阅读(3784) | 发表于 13:03


分享一下我写的这个类

/**
* @author:ycccc8202
* @用途:注册事件进行传递参数的代理类
* @date:2007.8.26
* @example:
* import CYPL.utils.JEventDelegate
  stage.addEventListener(MouseEvent.MOUSE_DOWN,JEventDelegate.create(mouseDownHandler,"a","b"));
  function mouseDownHandler(e:MouseEvent,...arg) {
  trace(e)
  trace(arg)
  }
*/
package CYPL.utils{
 import flash.events.Event
 public class JEventDelegate {

  public function JEventDelegate() {
  }
  public static function create(f:Function,... arg):Function {
  return function(e:Event){
  f.apply(null,[e].concat(arg));}
 
};

public static function toString():String {
 return "Class JEventDelegate";
}

}
}


使用格式如下:

import CYPL.utils.JEventDelegate
  stage.addEventListener(MouseEvent.MOUSE_DOWN,JEventDelegate.create(mouseDownHandler,"a","b"));
  function mouseDownHandler(e:MouseEvent,...arg) {
  trace(e)
  trace(arg)
  }

//这样的好处是既保留了原有的event参数,又能够传递新的参数
1

评论Comments

日志分类
首页[38]
flash学习[35]
图片收藏[1]
Apollo_Flex[2]