我一直在创建一个超媒体播放器,我已经到了一个它出现故障的阶段,它显然是一个......
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at AvalancheCityHypermediaPlayer_fla::MainTimeline/fl_CustomMouseCursor()
这是我的代码:
import flash.events.Event;
cust_cursor.mouseEnabled= false;
cust_cursor.addEventListener(Event.ENTER_FRAME, fl_CustomMouseCursor);
function fl_CustomMouseCursor(event:Event)
{
cust_cursor.x = stage.mouseX;
cust_cursor.y = stage.mouseY;
}
Mouse.hide();
我不确定为什么它不能正常工作,基本上当一个按钮悬停在它上面时,它意味着跳转到第 2 帧并停止,但它正在跳转到该帧,然后直接跳转到第 1 帧而不在第 2 帧停止,并停在第 1 帧。