Applescript Adobe Updater

2

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

Alex

Posted 2012-09-06T14:08:27.920

Reputation: 21

This is programming question, so it should belong to SO or AD, therefore it should be closed in here. Very similar question on SO.

– kenorb – 2015-05-05T23:11:49.533

As a workaround, use System Events to tab to the target button and press the space bar to actuate the button. – user3439894 – 2018-01-05T12:44:21.220

No answers