2017-05-24 11 views
0

私はNotes.appで新しいノートをすばやく作成しようとしています。新しく作成したメモを1つのフローティングウィンドウで開きたいと思います。Notes.Appで特定のノートを開く方法

ここでノートを作成するための私のコードです: set RunTime to ((current date)) as string tell application "Notes" activate tell account "iCloud" make new note at folder "Notes" with properties {name:RunTime} --does not work --open document {name:RunTime} end tell end tell

任意の考えは?

答えて

0
  1. Notes.app AppleScriptスイートは、たとえばSafariのように新しい文書でメモを開くことをサポートしていません。
  2. スタンダードスイートは「は文書、しかし、あなたがアプリケーションを伝えるのtellアカウント「のiCloud」の外にそれで作業する必要が含まれている注意事項
  3. あなたの最後の希望オープンノートの場所かもしれません{URL}ノートID

    set noteID to make new note at folder "Notes" with properties {name:RunTime} 
    
を使用してながら、
関連する問題