Guest User

Untitled

a guest
Jun 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. function Autosize(txt:TextField):void
  2. {
  3. //You set this according to your TextField's dimensions
  4. var maxTextWidth:int = 145;
  5. var maxTextHeight:int = 30;
  6.  
  7. var f:TextFormat = txt.getTextFormat();
  8.  
  9. //decrease font size until the text fits
  10. while (txt.textWidth > maxTextWidth || txt.textHeight > maxTextHeight) {
  11. f.size = int(f.size) - 1;
  12. txt.setTextFormat(f);
  13. }
  14.  
  15. }
Add Comment
Please, Sign In to add comment