如何使用 jsfl 跟踪在 Actions 面板上的 .fla 文件中编写的代码?

How to trace the code that written in a .fla file on the Actions panel with jsfl?

有没有办法使用 jsfl 访问 flash 文件中“动作”面板上的代码?

非常感谢大家的帮助。

当您拥有 Frame 对象时,您可以访问 actionScript 属性。参见 this link

从那里获取的示例代码,它将 stop(); 添加到时间轴上第一层的第一帧

fl.getDocumentDOM().getTimeline().layers[0].frames[0].actionScript = 'stop();';

如果你想改变一个符号的AS,你应该先通过symbolItem.timeline

得到它的时间线