1 2 3 4 5 6 7 8 9 10 11 | function autoTextSize(txt:TextField):void { var f:TextFormat = txt.getTextFormat(); f.size = 30; // Set the max font size while ( txt.textWidth > txt.width|| txt.textHeight > txt.height) { f.size = int( f.size ) - 1; txt.setTextFormat( f ); } } |
http://snipplr.com/view/47474/
0 件のコメント:
コメントを投稿