New question about Applescript new :) I'm trying to create a small applescript that will allow me to select several items from the list of running applications and then exit the selected applications. Something like this works, but instead of clicking on each dialog, it would be much easier to select from the list.
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
Any help would be greatly appreciated!
Thanks!
applescript osx-mountain-lion macos
user2555399
source share