Created
March 30, 2011 14:17
-
-
Save basuke/894472 to your computer and use it in GitHub Desktop.
How to collect Stickies Window positions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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