JSFL fl.saveDocumentAs();
我正在编写一个 JSFL 脚本,用于调整 flas 的大小并保存各种版本,并附加名称。
我可以使用 fl.saveDocumentAs(); 弹出“另存为”提示;
但我似乎无法让 flash 为 FLA 生成新名称。
我只想将“document.fla”保存为“document_foo.fla”(以及后来的“document_qux.fla”),最好不要用“另存为”提示中断脚本。
I am writing a JSFL script that resizes flas and saves various versions, with appened names.
I can get a "Save As" prompt to pop up using fl.saveDocumentAs();
But I can't seem to get flash to generate a new name for the FLA.
I just want to save "document.fla" as "document_foo.fla" ,(and later "document_qux.fla"), preferably without interrupting the script with a "save as" prompt.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
谢谢,只需使用 fl.saveDocument() 即可。我用它来重命名它并将 Flash 的焦点切换到新版本:
thanks, just using fl.saveDocument() works. I used this to rename it and switch Flash's focus to the new version:
您不需要使用 fl.saveDocumentAs()。
阅读 - http://help.adobe.com/en_US/flash/cs/extend/WS5b3ccc516d4fbf351e63e3d118a9024f3f-7d12.html
每次修改后使用fl.saveDocument即可。
You dont need to use fl.saveDocumentAs().
Read - http://help.adobe.com/en_US/flash/cs/extend/WS5b3ccc516d4fbf351e63e3d118a9024f3f-7d12.html
Just use fl.saveDocument after each modification.