13

Applescript を使用して実行中のすべてのユーザー アプリケーションを終了するにはどうすればよいですか?

4

4 に答える 4

11

大丈夫です...私は自分の答えを見つけたと思います:

tell application "System Events" to set the visible of every process to true

set white_list to {"Finder"}

try
    tell application "Finder"
        set process_list to the name of every process whose visible is true
    end tell
    repeat with i from 1 to (number of items in process_list)
        set this_process to item i of the process_list
        if this_process is not in white_list then
            tell application this_process
                quit
            end tell
        end if
    end repeat
on error
    tell the current application to display dialog "An error has occurred!" & return & "This script will now quit" buttons {"Quit"} default button 1 with icon 0
end try
于 2009-01-30T12:23:53.467 に答える