论坛帮助 |
社区圈子 |
日历事件 |
2023-04-17, 11:29 | #1 | ||
|
|||
正式会员
等级: 二袋长老
|
用Cursor生成下面的代码: var doc = app.activeDocument; var linksFolder = new Folder(doc.path + "/Links"); if (!linksFolder.exists) { linksFolder.create(); } var fileToPlace = new File(doc.path + "/Links/your_file.ai"); doc.place(fileToPlace); 提示“doc.place不是函数”,大佬们请问要怎么修改?(另外,我发现很多时候Cursor生成的代码,都会提示不是函数,为什么呢?) |
||