Re: Why doesn't "choose from list (name of processes)" work?
Re: Why doesn't "choose from list (name of processes)" work?
- Subject: Re: Why doesn't "choose from list (name of processes)" work?
- From: Paul Berkowitz <email@hidden>
- Date: Sat, 30 Jun 2001 08:46:49 -0700
On 6/30/01 6:59 AM, "Michelle Steiner" <email@hidden> wrote:
>
tell application "Finder"
>
choose from list (name of processes)
>
end tell
>
--> Finder got an error: Some data was the wrong type.
>
>
However the following works just fine,
>
>
tell application "Finder"
>
set foo to name of processes
>
choose from list foo
>
end tell
>
I'm in OS X where 'process' doesn't exist, so I can't test this. But try it:
tell application "Finder"
choose from list (get name of processes)
end tell
--
Paul Berkowitz