我想在运行OSX的Acrobat Pro DC中使用Javascript打开pdf文档。这是我看到的:
app.openDoc("~/Desktop/test.pdf")
Invalid Location "~/Desktop/test.pdf". File or folder does not exist.
NotAllowedError: Security settings prevent access to this property or method.
App.openDoc:1:Console undefined:Exec
undefined
我想知道错误是否是page 135 of the Javascript for Acrobat reference上提到的安全限制。
答案 0 :(得分:1)
由于Acrobat JavaScript是跨平台的,因此您需要使用设备独立的路径,并且不能使用设备特定的快捷方式,例如“〜”。类似于下面的示例。
Windows路径C:\ MyFolder \ MyFile.pdf
app.openDoc("/C/MyFolder/MyFile.pdf");
Macintosh路径MyDisk:MyFolder:MyFile.pdf
app.openDoc("/MyDisk/MyFolder/MyFile.pdf");
您可以使用“ ../”作为相对路径。