AppleScript per visualizzare le notifiche di app chiuse con ciascuna separata, con una virgola ","

1

Questo è l'AppleScript che sto usando. .

    tell application "System Events"
set listOfProcesses to (name of every process where background only is false)         
tell me to set selectedProcesses to choose from list listOfProcesses with multiple selections allowed  
set myResult to ""  
    end tell        

   --The variable selectedProcesses will contain the list of selected items.
repeat with processName in selectedProcesses
do shell script "Killall " & quoted form of processName
    end repeat
repeat with s in every string in selectedProcesses
set myResult to myResult & " ," & s
    end repeat
tell application "Finder" to display notification "Apps closed successfully:
" & selectedProcesses

Perfavoredimmiunmodoperseparareirisultatinellavisualizzazionedellanotificadapartediuncoma.Inquestocaso,ledueappsonoNoteePromemoria..Lanotificaèsimileaquesta:

    
posta TUSHAR TUSHAR 07.12.2017 - 14:37
fonte

1 risposta

1

Devi solo sostituire selectedProcesses con myResult

indica all'applicazione "Finder" di visualizzare la notifica "Le app sono state chiuse correttamente: "& SelectedProcesses

    
risposta data 07.12.2017 - 15:35
fonte

Leggi altre domande sui tag