>I don't understand the repeat command at all! How would you make is so it
>will show and hide a Field on repeat? Like,
>
>show fld "Main"
>wait 1 second with messages
>hide fld "Main"
>
>
>I want it to repeat that. Thanks!

Wrap it in repeat:

repeat 5 times
show fld "main"
wait 1 second with messages
hide field "main"
wait 1 second with messages
end repeat

It would be better to do this with send...in, however.

regards,

gc

Reply via email to