Page 1 of 1

Clearing all textfields..! Help..!

Posted: Sat Mar 15, 2014 8:34 pm
by snop21
Hello livecoders,

Will just ask how can I clear all the textfields of all my cards.. I have 120 textfields in total how can I clear all the fields in one click.

Thank you..

-Regards

snop21

Re: Clearing all textfields..! Help..!

Posted: Sat Mar 15, 2014 9:17 pm
by jmburnod
Hi,

Code: Select all

on mouseUp
   repeat with i = 1 to the num of cds
      repeat with u = 1 to the num of flds of cd i
         put empty into fld u of cd i
      end repeat
   end repeat
end mouseUp
Best regards
Jean-Marc

Re: Clearing all textfields..! Help..!

Posted: Mon Mar 17, 2014 6:02 pm
by snop21
HI mburnod ,

Thank you..! 8)

Regards

snop21