1009错误“swf工作正常”AS3

时间:2010-02-24 20:45:09

标签: flash actionscript-3

alt text http://www.ashcraftband.com/myspace/videodnd/board1.jpg

我的电影工作,但我不确定我的东西是什么。 1009错误说它“无法访问属性。我正在使用”如果“条件触发gotoAndPlay。什么是最好的代码编码方式?

//Error #1009: Cannot access a property
stop();

//meter
var timer:Timer = new Timer(300);//1000 = 1 sec
timer.addEventListener(TimerEvent.TIMER, onTimer);
timer.start();
function onTimer(evt:TimerEvent):void {
watch.hand.rotation +=10;

//conditional argument to go to next stop-frame
if (watch.hand.rotation >= 33) {
gotoAndPlay(2);
}
}

实例
看,循环,手

alt text http://www.ashcraftband.com/myspace/videodnd/if.jpg

时间表
alt text http://www.ashcraftband.com/myspace/videodnd/iftimeline_.jpg

注意
“它有点像预载器,只是我不理解的东西”

1 个答案:

答案 0 :(得分:0)

此错误意味着您正在尝试引用尚未存在的内容。要解决一下你想要引用的内容,并问问自己是否存在。

这个代码在一个类中吗?如果没有,请将其放在课堂上。

如果此代码在一个帧中,那么移动到新帧将使用新帧中的代码。