AppleScript名:Keynote 6.6でドキュメントを新規作成して指定可能なマスタースライド一覧を取得 |
— Created 2015-10-27 by Takaaki Naganoya — 2015 Piyomaru Software use AppleScript version "2.4" use scripting additions use framework "Foundation" tell application "Keynote" –Keynoteの用語辞書のサンプルどおりに書いても動かない!!(オブジェクト名がローカライズされているので、テーマ名が言語環境依存) set aDoc to (make new document with properties {document theme:theme "ホワイト", width:1920, height:1080}) tell aDoc set masList to name of every master slide –> {"タイトル & サブタイトル", "画像(横長)", "タイトル(中央)", "画像(縦長)", "タイトル(上)", "タイトル & 箇条書き", "タイトル、箇条書き、画像", "箇条書き", "画像(3 点)", "引用", "写真", "空白"} end tell end tell |
(Visited 36 times, 1 visits today)