I'm not exactly a programmer, but i've touched my toes, ok, my smallest toe, into the depths a little. I've worked with pretty simple HTML and CSS, but that's pretty different from programming. Anyways, I've been looking for a way to use Spaces with Quicksilver (i know, not programming at all, keep reading) and I found a way using Applescript from here. Essentially he used the "Switch directly to a space" button (in system prefs) and used this script
as a quicksilver trigger to go to Space 1. Very simple, but I wanted to use mouse gestures instead with "Switch between spaces"
doesn't work, probably because Applescript doesn't understand "left", I think. Is there a way (ASCII?) to make it work? Any better ideas for
Code:
tell application "System Events" to keystroke "1" using control down
as a quicksilver trigger to go to Space 1. Very simple, but I wanted to use mouse gestures instead with "Switch between spaces"
Code:
tell application "System Events" to keystroke "left" using command down
doesn't work, probably because Applescript doesn't understand "left", I think. Is there a way (ASCII?) to make it work? Any better ideas for