up vote 1 down vote favorite
share [g+] share [fb]

Is there a way to bind a Label's fontSize to be half the fontSize of another label?

I tried this:

<mx:Label id="mytitle" text="{title}" fontSize="{(mylabel.getStyle('fontSize') as Number)/2}"/>

No luck...anyone know a way?

Thanks

link|improve this question

feedback

2 Answers

What you tried gets called too early, so the font for "mylabel" isn't initialized yet. You could use the initialize event to do this after the UI components are filled in.

<mx:Label id="mytitle" text="{halfSize}"
          initialize="{setStyle('fontSize', mylabel.getStyle('fontSize') / 2)}"/>
link|improve this answer
Hi, that will set it on init, but will it be binded if the myLabel's font size changes? Thanks. – John Isaacks May 11 '09 at 13:29
feedback

Your chosen method won't work because getStyle isn't bindable. You could always bind both labels to some other value (one to it unmodified and one to that value divided by 2) and change that rather than the font size on the label itself.

The existence of a good solution might depend on why you want to do this though.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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