08/07/14 23:57:20 hYWUhd0j0
>>731
システム環境設定で "補助装置にアクセスできるようにする" にチェックを入れてから、メニューの操作は、
tell application "VLC" to activate
tell application "System Events"
tell process "VLC"
tell menu bar item 7 of menu bar 1
tell menu item 4 of menu 1
click
end tell
end tell
end tell
end tell または、
tell application "System Events"
tell application "VLC"
activate
end tell
key down command
keystroke "3"
key up command
end tell ターミナルウィンドウの強制終了は
tell application "System Events"
tell application "Terminal"
activate
close front window
end tell
delay 1
keystroke return
end tell