这在其他语言中似乎很简单,但我不明白这个错误。我有 7 个按钮,当您单击它们时,我希望每个按钮将我的画廊影片剪辑带到某个帧。
错误:1067:将 int 类型的值隐式强制转换为不相关的类型 flash.events:MouseEvent。 错误:1136:参数数量不正确。预计2。 错误:1067:将 void 类型的值隐式强制转换为不相关的类型 Function。
有什么帮助吗?
function gotoImage(event:MouseEvent, frameParam:int):void
{
MovieClip(this.root).gallery.gotoAndStop(frameParam);
}
t1.addEventListener(MouseEvent.CLICK, gotoImage(1));
t2.addEventListener(MouseEvent.CLICK, gotoImage(2));
t3.addEventListener(MouseEvent.CLICK, gotoImage(3));
t4.addEventListener(MouseEvent.CLICK, gotoImage(4));
t5.addEventListener(MouseEvent.CLICK, gotoImage(5));
t6.addEventListener(MouseEvent.CLICK, gotoImage(6));
t7.addEventListener(MouseEvent.CLICK, gotoImage(7));