On 6/3/05 11:02 AM, "Bob Hartley" <[EMAIL PROTECTED]> wrote:

> Then I thought that since the field is number x and the fields are field1,
> field2 etc then 
> on mouseUp
>   repeat with x = 1 to the number of flds
>     if the name of fld x is "field" & "x"
>    then put empty into fld x
> end repeat 
> end mouseUp
> 
> No luck there
> 
> bob
> 
You do not want the literal "x", so use the following

if the name of fld x is ("field" & x)
--without the quotes and preferentially the parens

Jim Ault
Las Vegas


_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to