Export All Of The Notes On Your Mac Using a Script
Here is the code: // set things up var app = Application.currentApplication(); app.includeStandardAdditions = true; var notesApp = Application(‘Notes’); notesApp.includeStandardAdditions = true; // choose which notes var notes = notesApp.notes; var whichNotes = app.chooseFromList(notes.name(), { withPrompt: “Which Notes?”, multipleSelectionsAllowed: true }); if (whichNotes) { // choose save location var saveWhere = app.chooseFolder().toString(); if (saveWhere) { … Continue reading Export All Of The Notes On Your Mac Using a Script
Copy and paste this URL into your WordPress site to embed
Copy and paste this code into your site to embed