Skip to content

Instantly share code, notes, and snippets.

@basuke
Created March 30, 2011 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save basuke/894472 to your computer and use it in GitHub Desktop.
Save basuke/894472 to your computer and use it in GitHub Desktop.
How to collect Stickies Window positions
tell application "Stickies"
activate
set w to {}
tell application "System Events"
tell application process "Stickies"
repeat with win in every window
set w to w & {position of win}
end repeat
end tell
end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment