当前位置:  开发笔记 > 编程语言 > 正文

AS2按钮到AS3

如何解决《AS2按钮到AS3》经验,为你挑选了1个好方法。

如何将这些AS2按钮转换为AS3?

on (press) {
    nextFrame();
}
on (press) {
    prevFrame();
}

quoo.. 6

import flash.events.MouseEvent;

this.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);

public function mouseDownHandler(event:MouseEvent):void{
    nextFrame();
}

但您可能还应阅读此内容以了解事件模型的更改方式:

http://www.flashvalley.com/fv_tutorials/mouse_events_in_actionscript_3.0/



1> quoo..:
import flash.events.MouseEvent;

this.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);

public function mouseDownHandler(event:MouseEvent):void{
    nextFrame();
}

但您可能还应阅读此内容以了解事件模型的更改方式:

http://www.flashvalley.com/fv_tutorials/mouse_events_in_actionscript_3.0/

推荐阅读
大大炮
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有