I tried this approach, but using styleName does not give me the expected
results...
You can use styleName on Text's they work fine but not on UITextField,
although it
says it's a property of the UITextfield... who knows I'm relatively new
at flex and swimming up stream
all the time?
This is the only way I know how to style the UITextField, with the
TextFormatter class...
However the edges look pixelated... (I'm sure there's a solution for
this too)
var formatter:TextFormat = new TextFormat();
formatter.bold = true;
formatter.color = "0xffffff";
formatter.font = "arial";
formatter.size = "20";
percent.setTextFormat(formatter);
I have had no other issues with Text or TextArea, with using styleName
property with a stytlesheet declaration before.
Patrick
camlinaeizerous wrote:
>
> I haven't tested this but for 4 I would assume something similar to
> the following should work.
>
> var sometext:UITextField;
> sometext.styleName = UITextField
>
> in your style sheet you should be able to now set styles and the font,
>
> UITextField{
> fontFamily: ...;
> }
>
> if you call it UITextField you may not have to assign the styleName. I
> probably don't have all of this right but it should at least help you
> get in the right direction.
>
> > 4. How do I set the font of UITextField with stylesheet, or embedded
> > font
>
>