Automator not recording keystrokes (keyboard shortcuts)
command option+ctrls
and then
ctrl shifteject
any ideas on how to get automator to capture these and or another way to automate this process?
Macbook, Mac OS X (10.6)
Macbook, Mac OS X (10.6)
tell application "InsomniaX" to activate
tell application "System events" to keystroke "s" using {command down, control down, option down}
on run {input, parameters}
tell application "InsomniaX" to activate
tell application "System events" to keystroke "s" using {command down, control down, option down}
end run
I want to be able to close the lid, move from class to class without having the computer go to sleep.
on run {input, parameters}
tell application "InsomniaX" to activate
tell application "System Events" to key code 51 using {shift down, control down}
delay 1
try
tell application "SleepDisplay" to activate
end try
end run
Automator not recording keystrokes (keyboard shortcuts)