Created
September 24, 2015 21:38
-
-
Save panicsteve/855bd71bbdb3cbc1d9b1 to your computer and use it in GitHub Desktop.
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
// add-note.scpt | |
// | |
// Example of creating a new note in Notes.app using JavaScript for Automation | |
// Steven Frank <[email protected]> | |
notesApp = Application('Notes'); | |
notesApp.activate(); | |
var note = notesApp.Note({ | |
'name': 'Test Note', | |
'body': 'This is just a test note.' | |
}); | |
notesApp.folders[0].notes.push(note); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment