I am beginner in livecode, I am looking for how Disable Multi-line Input on Text entry field in livecode
Disable Multi-line Input on Text entry field in livecode
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Disable Multi-line Input on Text entry field in livecode
Hi,
I am beginner in livecode, I am looking for how Disable Multi-line Input on Text entry field in livecode
I am beginner in livecode, I am looking for how Disable Multi-line Input on Text entry field in livecode
--
Thanks
Shalu S
Thanks
Shalu S
Re: Disable Multi-line Input on Text entry field in livecode
set the 'dont wrap' in the property inspector of the field or, by script...
Code: Select all
set the dontWrap of field 1 to trueRe: Disable Multi-line Input on Text entry field in livecode
If I am using enter key text move upwards
--
Thanks
Shalu S
Thanks
Shalu S
Re: Disable Multi-line Input on Text entry field in livecode
in the script of the field, put
Code: Select all
on enterInField
exit to top
end enterInFieldRe: Disable Multi-line Input on Text entry field in livecode
Hi,
Still I can give multiple text
Still I can give multiple text
--
Thanks
Shalu S
Thanks
Shalu S
Re: Disable Multi-line Input on Text entry field in livecode
Oh !... it works here ...for me ... set the 'tab on return' to true as well...
Re: Disable Multi-line Input on Text entry field in livecode
Hi.
Are we sure we are understanding the original problem? What do you mean by "disable multi line..."? Is it that you want to restrict user entry to a single line? That is, to prevent a return character from being entered into that field?
Craig Newman
Are we sure we are understanding the original problem? What do you mean by "disable multi line..."? Is it that you want to restrict user entry to a single line? That is, to prevent a return character from being entered into that field?
Craig Newman

