在我创建UI的过程中,由于无法在影片剪辑中告诉影片剪辑在鼠标悬停期间(在另一个不同的符号上)前进单帧,因此我很早就被卡住了
基本上我想将鼠标悬停在一个区域上(我使用按钮符号创建的区域只有标记的命中区域:
当你徘徊在它上面时,影片剪辑中的影片剪辑会向前移动一帧。鼠标悬停工作正常,我用警报测试了它。
这是我的代码:
var frequency = 15;
stage.enableMouseOver(frequency);
this.sirtonim.addEventListener("mouseover", fl_MouseOverHandler.bind(this));
function fl_MouseOverHandler()
{
// Start your custom code
// This example code displays the words "Moused over" in the Output panel.
this.inter.highlight1.gotoAndStop(1);
// End your custom code
}
sirtonim =按钮的实例名称
inter =第一个影片剪辑的实例名称
highlight1 =影片剪辑中影片剪辑的实例名称
向前谢谢! (我尝试将gotoAndStop改为(2),它也没有用)