I am try to resize a TextField object, but don’t want the text inside to scale, just the container. Anyone know how to do this?
Thanks!
-Bill
I am try to resize a TextField object, but don’t want the text inside to scale, just the container. Anyone know how to do this?
Thanks!
-Bill
Bill, do you want to increase area of text being displayed?
If so
var tx:TextField = new TextField();
addChild(tx);
tx.height = requireValue;
tx.width = requireValue;
If this is not what you want, please elaborate.
:: Copyright KIRUPA 2024 //--