Applescript Adobe Updater
Posted
by
Alex
on Super User
See other posts from Super User
or by Alex
Published on 2012-09-06T14:08:27Z
Indexed on
2012/09/06
15:41 UTC
Read the original article
Hit count: 299
So, I am new to Applescript editor and I am trying to write code to automatically update computers. For some odd reason I can not seem to get Adobe to update successfully. I tried using Accessibility Inspector, but nothing appeared like AXButton So is there even a way of writing code for Adobe when there is not an AXButton option?
This is the code:
tell application "Adobe Application Manager" activate end tell delay 7.0 tell application "System Events" tell process "Adobe Application Manager" click button "Update" of window "Adobe Application Manager" end tell end tell
and this is the error message:
error "System Events got an error: Can’t get button \"Update\" of window \"Adobe Application Manager\" of process \"Adobe Application Manager\"." number -1728 from button "Update" of window "Adobe Application Manager" of process "Adobe Application Manager
© Super User or respective owner