dear friends Been tring to teach my self applescript and this bit with the calculator has me frustrated. The command "exists" seems to work and returns me a "true". Trying to click, press the number buttons just returns an error message.
this is the applescript, can anyone suggest how to make it function? thanks Gordon Beckhart tell application "Calculator"
tell application "System Events"
tell application process "calculator" tell window "calculator" exists button "9" of group 1 --exists button "Clear" of group 1 --click button "9" of group 1 --press button "plus" of group 1 --press button "5" of group 1 --press button "equals" of group 1 end tell end tell end tell end tell
s
|