现在尝试在图形上使用摘要。如果我使用此过渡代码段,则警报会起作用,但我希望它执行的实际功能却不起作用。
我可以使用CLICK和goToAndPlay,它似乎可以工作,但是不行:
var frequency = 3;
stage.enableMouseOver(frequency);
this.replay.addEventListener("mouseover", fl_MouseOverHandler_7);
function fl_MouseOverHandler_7()
{
// Start your custom code
// This example code displays the words "Moused over" in the Output panel.
alert("Moused over");
// End your custom code
this.gotoAndPlay(240);
}
最后,让警报起作用。即使我发出警报,GoToAndPlay也不会。