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.
Illustrator の保存メソッドは、保存が完了したときに実行されるコールバック関数を提供しますか?
いいえ、そうではありません。私の Extendscript は常に同期しているように感じました。たぶん、次のようなことを試してみてください:
var doc = app.documents.add(); doc.saveAs(File('~/Desktop/testfile.ai')); if(doc.saved === true){ $.writeln('yeah'); }else{ $.writeln('buhu.'); }