brutteforcce
Technical User
If I scalled a text how can I make it like it was, with the original size of the font that it has.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var tfmt = new TextFormat();
tfmt.size = 40;
this.createTextField("the_text", this.getNextHighestDepth(), 0, 0, 100, 100);
the_text.text = "This is the text";
the_text.autoSize = true;
the_text.setTextFormat(tfmt);