Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含许多帧的 Flash 项目。我想测试剪辑的一小部分,但每次我运行时,它都会从头开始运行,所以我必须等到我想要的帧。
所以,我的问题是:在 flash cs6 中,我怎样才能从时间轴上的精确帧运行。
谢谢 :)
如果您的项目只是时间轴上的动画,您可以插入一些代码:
gotoAndPlay(10); // would jump to frame 10 when flash hits this bit of code
在第一帧。您可以将它放在该框架的脚本区域中。但是,如果您的项目在时间轴上包含必须运行的其他代码(例如初始化或设置代码),那么您可能必须先模拟所有这些代码,然后才能跳转到某个帧,因为它可能会跳过它。