2017-05-24 25 views
0

我正試圖在Notes.app中快速創建新註釋,並且想要在單個浮動窗口中打開我新創建的註釋。如何在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套件不支持在新文檔中打開註釋。
  2. 標準套件包含文件,但是,你需要告訴賬戶「iCloud的」之外與它的工作裏面告訴應用程序「注
  3. 你最後的希望可能是打開筆記的位置{URL}同時使用noteID

    set noteID to make new note at folder "Notes" with properties {name:RunTime} 
    
相關問題