如何退出 InDesign 并使用 InDesign 脚本打开 Illustrator?这是我的代码:
// closing the InDesign document here
myDocument.close(SaveOptions.NO);
// change the script's target to Illustrator
#target illustrator
app.documents.add(DocumentColorSpace.CMYK, width = 1024, height = 768);
但是这里的脚本并没有退出 InDesign,而只是打开了 Illustrator。我该如何解决这个问题?