# Bigger text than 72pt

**URL:** https://forum.kirupa.com/t/bigger-text-than-72pt/311849
**Category:** flash
**Created:** [July 18, 2010, 5:41pm UTC](https://forum.kirupa.com/t/bigger-text-than-72pt/311849 "2010-07-18T17:41:36Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![LS05](https://avatars.discourse-cdn.com/v4/letter/l/e19b73/32.png) [@LS05](https://forum.kirupa.com/u/LS05)
#### Post date: [July 18, 2010, 5:41pm UTC](https://forum.kirupa.com/t/bigger-text-than-72pt/311849/1 "2010-07-18T17:41:36Z")

</div>

Hi guys,  
I’ve made this code:

```auto
var txt:TextField = new TextField();
var frmt:TextFormat = new TextFormat();
txt.autoSize = TextFieldAutoSize.LEFT;
frmt.font = "Arial";
frmt.size = 800;
frmt.color = 0xFF00FF;
txt.defaultTextFormat = frmt;
txt.text = "TRY WITH THIS";

```

I’ve seen aroud the web flash websites with text bigger than the max flash dimension of 72 pt. How can i make that? I’ve tried with the code above but it seems that flash set the text size to 72…please help me!!! :ne:
