在我的阿卡多克。lsp文件,我有一行:
- (load "C:\\Dropbox\\Buckner Heavy Lift Cranes\\Scripts\\Actual\\PDFpublish.lsp" "PDFPublish failed to load")
它工作正常,并在启动时加载文件。我宁愿使用自动加载来避免总是加载我不需要的文件。但以下情况不起作用:
- (autoload "C:\\Dropbox\\Buckner Heavy Lift Cranes\\Scripts\\Actual\\PDFpublish.lsp" '("PDFPublish"))
当我尝试使用它时,我得到以下信息:
- Command: PDFPUBLISH
- The file C:DropboxBuckner Heavy Lift CranesScriptsActualPDFpublish.lsp(.lsp/.exe/.arx) was not found in your search path folders.
- Check the installation of the support files and try again.nil
- Command:
看起来所有的斜杠都被从文件位置去掉了。我试图通过本教程,所以我不确定当加载在同一个文件上时,我错过了什么使自动加载失败。 |