How to vertical align a TextField in AS3

前端 未结 4 987
轻奢々
轻奢々 2020-12-16 00:35

I´m trying to vertical align some text in a Monoline TextField in AS3. Not sure if this can be done with TextFormat, but I don´t think so.

I´ve looked for a solution

4条回答
  •  既然无缘
    2020-12-16 01:03

    If you are able to use a fl.text.TLFTextField instead of a flash.text.TextField (available from Flash Player 10+), you can vertically center the text using the verticalAlign property:

    import flashx.textLayout.formats.VerticalAlign;
    [...]
    myTextField.verticalAlign = VerticalAlign.MIDDLE;
    

提交回复
热议问题