我对adobe acrobat pro有疑问..
我正在使用applescript从Adobe acrobat Pro => Tools => "action wizard"运行一个操作。
实际上,它只是从动作向导中选择动作"Rajni“的第一步,
但是我不能点击窗口中的“下一步”按钮,转到下一步…然后单击关闭按钮...。
有人能帮上忙吗...
tell application "System Events"
tell application process "Acrobat"
tell application "Adobe Acrobat Pro" to activate
click the menu item "Rajni" of menu 1 of menu item "Action Wizard" of the menu "File" of menu bar 1
click button "Next" of window "Action: Rajni" -- here is the problem ........
end tell
end tell非常感谢。
发布于 2014-03-31 14:06:16
在单击窗口之前,请尝试添加一些延迟。
click the menu item "Rajni" of menu 1 of menu item "Action Wizard" of the menu "File" of menu bar 1
delay 2
click button "Next" of window "Rajni"https://stackoverflow.com/questions/18640374
复制相似问题