Re: check list routine
Re: check list routine
- Subject: Re: check list routine
- From: JollyRoger <email@hidden>
- Date: Thu, 15 Mar 2001 12:44:40 -0600
on 3/14/2001 4:25 PM, Arthur J Knapp at email@hidden wrote:
>
> Date: Wed, 14 Mar 2001 06:38:03 -0600
>
> From: Rick Plummer <email@hidden>
>
> Subject: check list routine
>
>
> Does anyone know how to check a list of strings to validate a script before
>
> running?
>
>
I'm afraid that I don't really understand what you mean. Let
>
me know if the following is even close:
(snip)
Assuming this is indeed what Rick is asking for (he still has not clearly
outlined his problem), why not just do this:
property stringList : {"a", "b"}
on run
if stringList /= {"a", "b"} then
tell me to quit -- or "error number -128"
end if
-- continue with execution...
end run
Rick, if this is not what you are asking for, then please do give more
information than a single sentence so that we can help you.
JR