Re: Variable names on the fly?
Re: Variable names on the fly?
- Subject: Re: Variable names on the fly?
- From: Emmanuel <email@hidden>
- Date: Tue, 16 Jan 2001 02:24:58 +0100
At 0:39 +0100 16/01/01, as digestion wrote:
>
set monthNum to mMonth of monthProps --ERROR
What you really mean is:
---------------
run script ("set monthNum to " & mMonth & "of monthProps")
---------------
HTH
Emmanuel