找不到Flash Actionscript 3.0场景,但场景存在

时间:2014-02-07 14:37:32

标签: actionscript-3 flash actionscript

Actionscript问题:

'#2108:没有找到Madwoman的场景。是我的错误。

我的代码是:

Crazy_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToNextScene);

function fl_ClickToGoToNextScene(event:MouseEvent):void
{
gotoAndPlay(1, 'Madwoman');
} 

This is a screenshot from FLASH CC scenes panel to show that the scene exists

2 个答案:

答案 0 :(得分:1)

我有类似的问题。解决这个问题:

btMyButton.addEventListener(MouseEvent.CLICK, function(e:MouseEvent) {
    MovieClip(root).gotoAndPlay(1, "MySceneName");
});

希望它有所帮助。

答案 1 :(得分:0)

我自己修正了,代码应该是:

Crazy_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToNextScene_2);

function fl_ClickToGoToNextScene_2(event:MouseEvent):void
{
MovieClip(this.root).nextScene();
}