vote up 0 vote down star

I am having problems with text with multiple lines not reformatting properly when I call loadStyleDeclarations. However if I load the same stylesheet TWICE then it correctly refreshes and reformats the text.

So what I want to do is refresh my control to get it to reformat the text. I've tried ValidateNow() and ValidateDisplayList() but neither seems to cause the correct kind of layout request.

I'm guessing loadStyleDeclarations() calls some other revalidation function, but i jsut cant find what it is.

flag

40% accept rate

2 Answers

vote up 1 vote down check

Try calling invalidateProperties() and/or invalidateDisplayList() on your component. That should cause the component to be rerendered on a next screen update.

link|flag
Turns out you have to call invalidateDisplayList() on the Text control itself. I assumed it was recursive at first, but then I thought I'd try it on the Text control itself which worked. Not even calling invalidateDisplayList() on the immediate container works. Thx – Simon Nov 22 '08 at 6:47
vote up 0 vote down

Did you call setStyle on the things that aren't updating?

link|flag
no. the style itself updates just fine, but the dimensions of it werent being recalculated. it was just a simple mx:Text control with a styleName set, width=100%. – Simon Nov 22 '08 at 9:28

Your Answer

Get an OpenID
or

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