Aquí está mi flujo de trabajo de servicio aproximado:
Solosepuedenagregartextos,ysecreaunanuevanota.
AppleScript:
onrun{input,parameters}tellapplication"System Events"
tell process "Notes"
click menu item "New Note" of menu "File" of menu bar 1
click menu item "Paste" of menu "Edit" of menu bar 1
end tell
end tell
return input
end run
Actualización * 2:
Para agregar imágenes, simplemente use otro bloque de Apple Script que haga clic en un elemento del menú. Y agrega un poco de retraso para que se inicie la aplicación Notes.
onrun{input,parameters}tellapplication"System Events"
tell process "Google Chrome"
click menu item "Copy" of menu "Edit" of menu bar 1
end tell
end tell
return input
end run