Alternative to maxscroll in RichEditableText component in Flex4(spark)?
We need to determine when there is more text than the textfield can display, so we can show a warning.
The user is designing pages to be printed, so he has to know when text will be omitted.
I'm looking for an alternative to "maxscroll" in the RichEditableText component using Flex4.
We tried it with „contentHeight“:
if(myRichEditableText.contentHeight > myRichEditableText.height) // do something
But this seams to be unreliable.
Pointing in the right direction is welcome.
