Hello Guys,
I am trying to make an edit box so that it is locked at 3 lines. What I have now is a field that can go on forever... Any help would be greatly appreciated!
Many Thanks,
Matthew.
3 Line Edit Field
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Re: 3 Line Edit Field
Hi Matthew,
add this to the field script:
Best
Klaus
add this to the field script:
Code: Select all
on returninfield
if the num of lines of me < 3 then
pass returninfield
end if
end returninfield

Best
Klaus
Re: 3 Line Edit Field
Thank you so much...