vote up 0 vote down star

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>
flag

Please add source code exactly as it is (this looks one of those off by one errors). Is the Label's text a concatenation of two strings? Also, do you have maxWidth set? – dirkgently Apr 14 at 16:14
Added code - I'm pretty sure it is nothing to do with my code though. It seems to be a config issue perhaps? – Richie_W Apr 14 at 17:14
Does the example code provided not work on your side? A straight copy-paste of the above code works just as it should. Perhaps expand on your particular scenario more? – nevets1219 Apr 16 at 5:21
Argh - Sorry guys - I think it may be a problem with a font I'm using - i.e. It works fine with a default flex-font but not with the one I'm embedding. Any ideas? – Richie_W Apr 17 at 16:31

5 Answers

vote up 0 vote down

I just tried your example code and it worked fine. Are you sure its not something else?

link|flag
vote up 0 vote down

So I went and embedded a font of my own and it truncates nicely without any particular issue. I'm not sure how you are embedding your font but this method worked for me. If you are doing something completely different then please specify in your post.

// Cannot name the font as one that already exists!
[Embed(source="Anonymous.ttf", fontFamily="myAnon")]
private var fontA : Class;

[Embed(source="HGRSGU.TTC", fontFamily="myFont")]
private var fontB : Class;

//...I have some code here that switches the font
var obj : Object = truncateMe.getStyle("fontFamily");
if (obj == "myAnon")
  truncateMe.setStyle("fontFamily", "myFont");
else
  truncateMe.setStyle("fontFamily", "myAnon");

<!-- My Label -->
<mx:Label maxWidth="150" truncateToFit="true" id="truncateMe"
    text="Something really long goes here" fontFamily="myFont" fontSize="20"/>
link|flag
Thanks for testing that out. I wonder if it has anything to do with the particular font I'm using? Though I know it has a full-stop character :s – Richie_W Apr 18 at 11:42
If you don't mind sharing the font, others can try to figure out if the issue is specific to your end or not but I know for sure this method works (at least with these two fonts that I'm using). You can probably work around the issue by manually coding the behavior in (I think). – nevets1219 Apr 18 at 19:56
vote up 0 vote down check

Ha ha! I found the solution. Sorry guys - It was probably my lack of information which made it hard for you guys to debug for m :(

So, anyway - It turns out I had an external resourceModule swf which my application loaded to get localised language data etc from - This file didn't include the some data about what text to display for the truncation (i.e. '...') and so it instead displayed 'null'. I added that data to the Resource swf and it's all working as expected.

Thanks a million for trying to help me out guys. ;)

link|flag
vote up 0 vote down

Hey Richie, how did you add the date to the resource swf? I am having the same problem.

link|flag
vote up 0 vote down

If working with multiple locales, make sure you add 'en_US' to your localeChain. E.g.: resourceManager.localeChain = ['pt_BR', 'en_US'];

Found solution at: http://blog.flexexamples.com/2008/01/26/truncating-text-in-the-flex-label-control-using-the-truncatetofit-property/

Look for Leandro's posting

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.