感谢任何能够帮助解决这种情况的人......
所以,
我在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();
}
}
答案 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();
}
}