Skip to content

Instantly share code, notes, and snippets.

@crum7
crum7 / gist:165186a88aa39bfa41c284558f05e629
Last active October 3, 2025 15:15
A.I.VOICE 2で選択中のテキストを一発で読み上げてくれるAppleScript
-- 前提 A.I.VOICE2を開く
-- selection -> copy
tell application "System Events" to keystroke "c" using command down
delay 0.2
set t to (the clipboard as text)
if t = "" then display notification "テキスト未選択" with title "A.I.VOICE 2" & return
-- focus A.I.VOICE 2
try