PDF 45ページ、1,000yen →お試し版(Sampler)
P-16 「グラフの作成(円グラフ)」
執筆時に動作は確認していましたが、円グラフの作成Scriptが現行のKeynote v12.1で動作しないことを確認しました。下記のAppleScriptはmacOS 12.6上で動作確認してあるものです。こちらをご利用ください。
AppleScript名:Keynote_④pie_2d_v2.scpt |
tell application "Keynote" tell front document tell current slide set the object text of the default title item to "2D Pie Chart" add chart row names {"ROW A"} column names {"COL A", "COL B", "COL C"} data {{45, 25, 30}} type pie_2d group by chart column end tell end tell end tell |
AppleScript名:Keynote_④pie_3d_v2.scpt |
tell application "Keynote" tell front document tell current slide set the object text of the default title item to "2D Pie Chart" add chart row names {"ROW A"} column names {"COL A", "COL B", "COL C"} data {{45, 25, 30}} type pie_3d group by chart column end tell end tell end tell |
(Visited 56 times, 1 visits today)