我觉得这总是不得不问这个问题,这是我项目的最后一部分,应该非常容易解决:/但是,在这里访问过很多类似的问题,我可以报告没有经过验证的答案已经解决了我的问题。
基本上,我想在我的文档类中的主时间轴上进行gotoAndStop(3)。但是,我似乎无法做到这一点..我已经尝试了以下两种情况,但都没有效果(两者都会产生不同的错误)..
var stageRef:Stage;
stageRef = stage;
stageRef.gotoAndStop(3)
错误:
Line 148 1061: Call to a possibly undefined method gotoAndStop through a reference with static type flash.display:Stage.
第二种方法:
var MainTimeline:MovieClip = this.parent as MovieClip;
MainTimeline.gotoAndStop(3);
错误:
Line 148 1042: The this keyword can not be used in static methods. It can only be used in instance methods, function closures, and global code.
这些解决方案都被其他用户标记为正常工作/正确,但我似乎无法让他们工作......我觉得很傻。任何帮助将不胜感激!欢呼声。
答案 0 :(得分:3)
MovieClip(root).gotoAndStop(3);