DVD Playerアプリケーションを起動し、その実際のサイズにリサイズするための小さなアプレットを作成しようとしています。コードは以下の通りです。コードを実行するとDVDプレーヤーが起動しますが、ウィンドウのサイズは変更されません。これを機能させるために何が欠けていますか?AppleScript:アプリケーションを起動してメニューコマンドを実行するには
おかげで、 ロブ
do_menu("DVD Player", "View", "Actual Size")
on do_menu(app_name, menu_name, menu_item)
try
-- bring the target application to the front
tell application app_name
activate
end tell
delay 3
tell application "System Events"
tell process app_name
tell menu bar 1
tell menu bar item menu_name
tell menu menu_name
click menu item menu_item
end tell
end tell
end tell
end tell
end tell
return true
on error error_message
return false
end try
end do_menu
+1の辞書の提案。 –
Mason - AppleScript辞書に関するヘルプと知識をありがとう – calmcajun
ようこそ。 –