Applescript初心者の質問です:)現在実行中のアプリケーションのリストから複数の項目を選択し、選択したアプリを終了できる小さなapplescriptを作成しようとしています。このようなものは機能しますが、各ダイアログをクリックするよりも、リストから選択する方がはるかに簡単です。
tell application "System Events"
repeat with p in every process
if background only of p is false then
display dialog "Would you like to quit " & name of p & "?" as string
end if
end repeat
end tell
どんな助けでも大歓迎です!
ありがとう!