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: Bill Cheeseman <email@hidden>
- Date: Sun, 01 Jul 2001 05:23:21 -0400
on 6/30/01 11:46 AM, Paul Berkowitz at email@hidden wrote:
>
But try it:
>
>
>
tell application "Finder"
>
choose from list (get name of processes)
>
end tell
That is often one way around this sort of problem. The problem arises
frequently, in many contexts. It also often works to break a compound
statement into two lines. Either:
get name of processes
choose from list result
Or:
set x to name of processes
choose from list x
--
Bill Cheeseman - email@hidden
Quechee Software, Quechee, Vermont, USA
The AppleScript Sourcebook - www.AppleScriptSourcebook.com
Vermont Recipes - www.stepwise.com/Articles/VermontRecipes