Pick of the Week - Nov 10 [Show all picks]
Path Finder 5 - A feature-laden Finder replacement
Submit Hint Search The Forums LinksStatsPollsFAQHeadlinesRSS
12,000 hints and counting!


Click here to return to the '10.5: Quick note creation in Mail via AppleScript' hint
The following comments are owned by whomever posted them. This site is not responsible for what they say.
10.5: Quick note creation in Mail via AppleScript
Authored by: cwanja on Wed, Jul 9 2008 at 5:12PM PDT
Would it be possible to make the same thing but for stickies??

---
 Genius - Retail Store

[ Reply to This | # ]
10.5: Quick note creation in Mail via AppleScript
Authored by: akamitka on Wed, Jul 9 2008 at 9:31PM PDT
Another script for note creation. A bit shorter...
tell application "System Events"
	tell application "Mail" to activate
	keystroke "n" using {command down, control down}
end tell


[ Reply to This | # ]
10.5: Note creation in Stickies
Authored by: yesiamnhoj on Thu, Jul 10 2008 at 1:23AM PDT

Hi Chris,

Replace Mail with Stickies in the above script.

tell application "Stickies" to activate

tell application "System Events"
	tell process "Stickies" to click the menu item "New Note" of the menu "File" of menu bar 1
end tell

Best wishes

John M



[ Reply to This | # ]