Hi,
I have a scrollview … it works fine. About half the time, the text I display in it fits completely
in the box of the scrollview, and there is no need to scroll (and nothing to scroll to).
The other half of the time, I have more text … to the point where it logically extends beyond
the bottom of the box, and the user has to scroll to see it all.
I’d like to have code like:
if my_scrollview.can_be_scrolled then
info.text = "You can scroll the text to see more"
end
I.e., I want to dynamically tell the user that there is more text than is visible. (I don’t want to tell them all the time … if they believed the message, half the time they’d be frustrated trying to scroll!)
BUT … I dumped (#1) the complete scrollview object for about a dozen cases (6 where text fit, 6 where it didn’t), and compared them to each other. There were no obvious internal fields to tell me anything useful (e.g., # of text lines, or, ‘text exists below bottom of window’).
So…is this possible to determine?
thanks,
Stan
- the “dump” is a recursive table printer