【发布时间】:2012-05-16 12:55:20
【问题描述】:
我一直在创建一个超媒体播放器,但我已经到了它出现故障的阶段,它显然是一个......
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 帧停止。
【问题讨论】: