Hi. I am very new to this and i was looking for a a way to create a script that will open a program and the press a button, type in my admin password, then click another button. Is this even remotly possible? thanks
Model: Dual 867 MDD
Browser: Safari 417.8
Operating System: Mac OS X (10.4)
It is possible. The button thing will work, but you may have to use an app called “Extra Suites” to do it. It is not tough to do. What are you trying? Here is sort of what it would probably look like:
Tell app “itunes” to activate
set {x,y} to position of button 1 of window “itunes”
tell app “extra suites”
ES move mouse {x,y}
ES click mouse
end tell
tell app “system events”
keystroke “password”
end tell
set {x,y} to position of button 2 of window “itunes”
tell app “extra suites”
ES move mouse {x,y}
ES click mouse
end tell