I have a project where I am drawing circles and line and such directly
onto a component extending a UIComponent (all actionscript)

I've had problems finding examples of "drawing letters" (or font
characters).

The best I've been able to come up with is to use "IUITextField"
objects and place those on the stage... but this is terrifically
limited. Dynamically changing the "font" size and such becomes a
really big issue.


        var textField:IUITextField;
        textField = IUITextField(createInFontContext(UITextField));
        textField.text = _value.toString();


Are there any examples where I can "draw" the sprites for the letters
themselves?



Reply via email to