
I made a field with a scroller scrolling down as text input. so the users don't have to manually scroll down to see the next line below visible area of the field.
The height of field "content" is 100. if the text reaches beyond 100 (height) of field, scroll sets down to the formattedHeight of field to show new line.
The problem is the scroller does not adopt increased height of the field..I put the script in the field like..
Code: Select all
--#1create scroller first( mobileControlCreate "scroller", "GroupScroll")
on keyUp
if 100 < the formattedheight of field "content" then
set the vScroll of group "scrollarea" to the formattedheight of field "content"
end if
end keyUp
Is there any way to solve this issue??
Cheers,
Louis