I have a number of labels in my Flex application which have the "truncateToFit" property on them set to true. The problem is that, instead of displaying '...' at the end of any truncated text it displays null.
I.e if my label's text was: "Hello Stackoverflow!" I might expect my label to look like this:
"Hello Stackov..."
Instead it displays
"Hello Stackovnull"
Any help would be useful!
Example of how truncation should look
Edit: - Example code:
<mx:HBox width="200" ... >
<mx:Label maxWidth="150" truncateToFit="true" text="Really long text.Really long text.Really long text.Really long text.Really long text" />
</mx:HBox>

maxWidthset? – dirkgently Apr 14 at 16:14