注册 登录
编程论坛 JavaScript论坛

JavaScript 调用 Acrobat static object

luo07bing 发布于 2015-01-31 09:47, 505 次点击
请问javescript 调用adobe 软件方法:adobe Acrobat 10 SDK
Acrobat SDK API References
app object

A static JavaScript object that represents the Acrobat application. It defines a number of Acrobat-specific functions plus a variety of utility routines and convenience functions.
Example

Print out a listing of available printers:
    var l = app.printerNames.length    for ( var i = 0; i < l; i++)        console.println("(" + (i+1) + ") " + app.printerNames[i]);
在html 中出现 app undefine
是否用ActiveXObjec 声明
0 回复
1