I like to have a very quick way to 'put empty' in all fields of a special group:
Code: Select all
put empty into all fields of group "InputFields" -- Perhaps this is possible in the future
Thanks for reading.
Jens
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
put empty into all fields of group "InputFields" -- Perhaps this is possible in the future
Code: Select all
on mouseUp
put the num of flds of group "MyGroup" into nbF
repeat with i = 1 to nbF
put "" into fld i of group "MyGroup"
wait 1 milliseconds
end repeat
end mouseUp
Yes. You're right.I missed that information in the Dictonary. There is no entry about 'field of group', is it?
no there isn't, but don't be so "pingelig"!3d-swiss wrote:...I missed that information in the Dictonary. There is no entry about 'field of group', is it?