THE Apple Script Guide (#1) by Fexxel This is an introductory tutorial. Not advanced. Step 1: Get the app! First off, you need a way to write these scripts, and run them. AppleScript: Features of Apple Script: It comes with a mac Computer. If you have a PC- too bad. Sucks for you. That's what the main window looks like. Now, notice the main frame. I will try to make this as simple as possible: Model: (insert items, and get rid of the { and }'s...) Code (Text): tell {"application here"} {command} end tell Syntax: tell end tell repeat end repeat Here are some example snip's for ya: Code (Text): tell application "safari" activate delay 1 do javascript "window.open('http://www.google.com/") delay 4 keystroke "t" keystroke "h" keystroke "i" keystroke "s" keystroke space keystroke "i" keystroke "s" keystroke space keystroke "a" keystroke space keystroke "t" keystroke "u" keystroke "t" keystroke "o" keystroke "r" keystroke "i" keystroke "a" keystroke "l" keystroke space keystroke "b" keystroke "y" keystroke space keystroke "f" keystroke "e" keystroke "x" keystroke "x" keystroke "e" keystroke "l" end tell