趣味のためのMacに関するサイト > AppleScript > ソースコード > AppleScriptでブログを投稿する
ソースコード

AppleScriptでブログを投稿する

複数のブログをectoで書いている場合は、順番を確認する必要があります。

  1. –AppleScriptで投稿 
  2. tell application ecto
  3.     set account_list to accounts whose name is テストサイト –アカウントの名前で 
  4.     set a to first item of account_list
  5.     properties of a
  6.     set blogs_list to blogs of a
  7.     set b to first item of blogs_list
  8.     properties of b
  9.     tell b
  10.         set e to make new entry
  11.         tell e
  12.             set tags to applescript
  13.             –set categories to “root”
  14.             set date_created to current date –日付を訂正 
  15.             set title to test_1
  16.         end tell
  17.         publish e –投稿 
  18.     end tell
  19. end tell

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

ページトップに戻る↑                           ページ一番下へ↓

Mac

About 1q3

ツールとしてのMacについてのメリットデメリットなどの事について書いています。

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です