Applescript Adob​​e Acrobat Pro将图像保存为PDF

时间:2014-09-04 18:30:22

标签: applescript adobe acrobat

我正在尝试编译一个AppleScript以使Adobe Acrobat Pro将PDF中的选定图像保存为JPEG。

这是我到目前为止所做的,但我没有让它发挥作用。

非常感谢 达里尔

告诉应用程序" Adob​​e Acrobat Pro"     激活 - 提出acrobat

tell application "System Events"

    tell process "Acrobat"
        click menu item "Save As" of menu 1 of menu bar item "File" of menu bar 1
        click menu item "Image" of menu 1 of menu bar item "Save As"
        click menu item "JPEG" of menu 1 of menu bar item "Image" of menu bar 1
    end tell
end tell

告诉

2 个答案:

答案 0 :(得分:0)

试一试

activate application "Adobe Acrobat Pro"
tell application "System Events"
    tell process "Acrobat"
        click menu item "JPEG" of menu 1 of menu item "Image" of menu 1 of menu item "Save As" of menu 1 of menu bar item "File" of menu bar 1
        click button "Save" of window "Save As"
    end tell
end tell

在OS X 10.9.4上测试| Adobe Acrobat Pro 10.1.10

答案 1 :(得分:0)

一个问题......我的兴奋有点不成熟...... 这样可以保存整个页面。如果在Acrobat中选择图像并右键单击它并选择保存图像。请看看你是否有解决方法。