ジャムスタ

just another mind Style

2013-02-14から1日間の記事一覧

ノート内容で不必要な部分をカットする[AppleScript][Evenrote]

前回で条件分岐ができました。 (前回の状態) set text2 to "" set note1 to find notes "notebook:inbox" if not (note1 = {}) then repeat with i in note1 set text1 to HTML content of i set text2 to text2 & text1 end repeat else display dialog "検…

リストが空だった時の処理を分ける[AppleSprict][Evernote]

先に検索結果が空だった時の条件分岐からやっておきましょう。 (前回の状態) set text2 to "" set note1 to find notes "notebook:inbox" repeat with i in note1 set text1 to HTML content of i set text2 to text2 & text1 end repeat これはfine notes…

繰り返しで検索結果のノート内容を全て取得する[AppleScript][Evernote]

前回は検索結果のノートの内容を取得するところまでやりました。 set note1 to find notes "notebook:inbox" set text1 to HTML content of item 1 of note1 二つ目の文のitem 1 の所を、2,3,4…と増やしていけば、検索結果のノートの内容全てにアクセスでき…