I have a text field followed by a static text field, and I'm trying to do 2 things with it:
- Get the text field to stretch horizontally (do not wrap) when the text is longer than the width of the field and
- Click the static text box right when the text box to the left of it is stretched
Both fields are contained in a frame.
I have both fields that are set as positionType = float, and the text field is set to stretchWithOverflow = true, which allows me to wrap text vertically but not stretch horizontally.
Is it possible to reach 1 and 2 above? If so, how?
source share