我怎样才能通过oop制作这段代码

时间:2010-09-14 15:22:22

标签: flash actionscript-3 oop

我有一个名为profile_btn

的按钮

我想通过OOP制作这段代码。

profile_btn.addEventListener(MouseEvent.CLICK,profile_btnClickHandler);
function profile_btnClickHandler(ev:MouseEvent):void
{
    //The actual code to jump to a specific frame
    this.gotoAndPlay('play');
}

此外,如何通过actionscript3将特定帧包含三个类与任何对象无关

1 个答案:

答案 0 :(得分:0)

如果您有一个类(您在链接中指定的名称)profile_btn,则可以使用以下内容。

var myButton:profile_btn =new profile_btn()

如果您想将其添加到舞台使用:

stage.addChild(myButton);

因此您的代码可能看起来像

var myButton:profile_btn =new profile_btn()

stage.addChild(myButton);

myButton.addEventListener(MouseEvent.CLICK,profile_btnClickHandler);

function profile_btnClickHandler(ev:MouseEvent):void
{
    //The actual code to jump to a specific frame
    this.gotoAndPlay('play');
}