我的Illustrator ExtendScript生成一些XML文件,我需要在Main()的末尾调用带有这些文件作为参数的可执行文件。我发现的解决方案充其量令人失望。
目前我的无参数解决方案只是
if (confirm("Would you like to open the NineGridViewer utility?", false)) {
// Temporary: prompt user to manually find path to executable
File.openDialog( 'Select path for NineGridViewer utility executable file.', '*.exe' ).execute();
}
据我所知,我可以生成一个包含我想要的。\ executable [params]的文件,并将该文件称为可执行文件。但如果可能的话,我真的想要一个更好的解决方案。
编辑: This post和this documentation的第180页使用方便的方法引用系统类,这些方法完全符合我的需要。但是当我使用它时,解释器似乎不知道我在说什么。我在这里误解了什么?