Keynoteの最前面の書類で表示中のスライド中の表で、選択中の各セルの内容の文字列の長さを表インタフェースで一覧表示するAppleScriptです。
こんなKeynote書類上の表があったとして、その選択中の各セルに入っている文字列の長さを、AppleScriptライブラリ「display table by list」を用いて一覧表示します。実行には同ライブラリのインストールが必要です。
実行の前提として、Keynoteで書類をオープンしてあり、書類上の表の集計対象のセルを選択しておくことが必要です。
文字列長と元の文字列を一覧表示します。
AppleScript名:Keynoteの表で選択中のセルの文字列長さを一覧表で表示.scpt |
— – Created by: Takaaki Naganoya – Created on: 2022/07/04 — – Copyright © 2022 Piyomaru Software, All Rights Reserved — use AppleScript version "2.5" — El Capitan (10.11) or later use framework "Foundation" use scripting additions use easyTable : script "display table by list" tell application "Keynote" tell front document tell current slide try set theTable to first table whose class of selection range is range on error display notification "Numbers: There is no selection" return end try tell theTable set aRes to value of cells of selection range end tell end tell end tell end tell set fLabels to {"文字列長", "文字列"} set newList to {} repeat with i in aRes set j to contents of i if j is not equal to missing value then set aLen to length of j set the end of newList to {aLen, j} end if end repeat tell current application set aRes to (display table by list newList main message "テキストの文字列長" sub message "Keynoteの表で選択中のテキストの各セルの文字列長" size {800, 400} labels fLabels icon "") end tell |
More from my site
(Visited 58 times, 1 visits today)
2022年に書いた価値あるAppleScript – AppleScriptの穴 says:
[…] ・Keynoteの表で選択中のセルの文字列長さを一覧表で表示 自分の書いた本の既刊分の説明文をKeynoteの表に入れ、文字が多いとか少ないといった「ゆらぎ」を調べるためのものです。決め […]