我正在尝试使用此脚本跳转到我的时间轴上的某个点:
feature1_btn.addEventListener(MouseEvent.CLICK, feature1);
function feature1(event:MouseEvent):void {
gotoAndPlay(620);
}
我的按钮实例标记为“feature1_btn”。为什么我会收到此错误?
答案 0 :(得分:1)
您可能会收到此错误,因为您在创建和/或初始化实例之前尝试将侦听器添加到实例。如果此代码在您的时间轴中,您需要确保时间轴中该点上的feature1_btn存在。