複数のブログをectoで書いている場合は、順番を確認する必要があります。
- –AppleScriptで投稿
- tell application “ecto“
- set account_list to accounts whose name is “テストサイト“ –アカウントの名前で
- set a to first item of account_list
- properties of a
- set blogs_list to blogs of a
- set b to first item of blogs_list
- properties of b
- tell b
- set e to make new entry
- tell e
- set tags to “applescript“
- –set categories to “root”
- set date_created to current date –日付を訂正
- set title to “test_1“
- end tell
- publish e –投稿
- end tell
- end tell
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー