Re: Script not quitting Entourage
Re: Script not quitting Entourage
- Subject: Re: Script not quitting Entourage
- From: Emmanuel <email@hidden>
- Date: Fri, 22 Dec 2000 18:22:30 +0100
At 17:53 +0100 22/12/00, Paul Skinner wrote:
>
set processList to {}
>
tell application "Finder"
>
set theProcesses to processes
>
end tell
>
repeat with thisProcess in theProcesses
>
set the end of processList to thisProcess as text
>
end repeat
>
return processList
>
--> {"Control Strip Extension", "FBC Indexing Scheduler", "Folder Actions",
>
"OSA Menu", "Time Synchronizer", "Outlook Express", "Internet Explorer",
>
"Scripter.", "Adobe. Photoshop. 5.5"}
I might be irrelevant here, but is the code above better than:
--------------------------- tested OS 9.0.4, Smile 1.7.5
tell application "Finder" to set processList to name of every process
---------------------------
Emmanuel