我试图在flash actionscript 2.0中配置幻灯片时遇到错误

时间:2011-03-21 17:29:42

标签: flash actionscript-2 mouseevent slideshow cs3

感谢任何能够帮助解决这种情况的人......

所以,

我在flash中制作了幻灯片,在我选择调试电影之前就可以预览了。关于MouseEvent类的错误出现的时候......

错误指出“无法加载类或接口'MouseEvent'”。 从我读过的内容中收集到的,我是否正确地假设我需要导入这个MouseEvent?

要准确了解我所拥有的内容,以下是我的完整代码;

stop()

btn1.addEventListener(MouseEvent.CLICK,backward);
btn2.addEventListener(MouseEvent.CLICK,forward);

function forward(event:MouseEvent){
    if(this.currentFrame == this.totalFrames){
        gotoAndStop(1);
    }
    else{
        nextFrame();
    }
}

function backward(event:MouseEvent){
    if(this.currentFrame == 1){
        gotoAndStop(this.totalFrames);
    }
    else{
        prevFrame();
    }
}

1 个答案:

答案 0 :(得分:0)

这看起来更像as2,但我可能会错过一些东西:

btn1.onPress = function (event){
    if(this.currentFrame == 1){
        gotoAndStop(this.totalFrames);
    }
    else{
        prevFrame();
    }
}

btn2.onPress = function(event){
    if(this.currentFrame == this.totalFrames){
        gotoAndStop(1);
    }
    else{
        nextFrame();
    }
}