Skip to content

Instantly share code, notes, and snippets.

@lionicsheriff
Created September 22, 2010 08:46
Show Gist options
  • Save lionicsheriff/591373 to your computer and use it in GitHub Desktop.
Save lionicsheriff/591373 to your computer and use it in GitHub Desktop.
tell application "Firefox"
activate
set the_title to name of first window
tell application "System Events"
key code 53 # escape key
delay 1
keystroke "l" using {command down}
delay 1
keystroke "c" using {command down}
delay 1
set the_url to «class ktxt» of ((the clipboard as text) as record)
key code 53 # escape key
end tell
end tell
tell application "Notational Velocity"
activate
delay 1
tell application "System Events"
key code 53 #escape key
keystroke the_title
keystroke return
keystroke the_url
keystroke return
end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment