I\'m trying to write an Applescript in Automator that will press the left arrow button while holding down control, option, and command. The code I have so far is:
When using arrow keys you need to target them via key code.
tell application "Sublime Text 2" to activate
tell application "System Events"
key code 123 using {control down, option down, command down}
end tell
ARROW KEY CODES