# Html texfield and duplicatemovie

**URL:** https://forum.kirupa.com/t/html-texfield-and-duplicatemovie/57392
**Category:** Uncategorized
**Created:** [July 12, 2004, 10:18pm UTC](https://forum.kirupa.com/t/html-texfield-and-duplicatemovie/57392 "2004-07-12T22:18:17Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![bypastaga](https://avatars.discourse-cdn.com/v4/letter/b/e95f7d/32.png) [@bypastaga](https://forum.kirupa.com/u/bypastaga)
#### Post date: [July 12, 2004, 10:18pm UTC](https://forum.kirupa.com/t/html-texfield-and-duplicatemovie/57392/1 "2004-07-12T22:18:17Z")

</div>

Hi everyone, i ld need some help because this getting me dumb…  
I have a script with a movieclip wich i duplicate with duplicateMovieClip.  
In this movieclip there is a texfield with many properties

```auto
[font=Courier new]txt_content.multiline = true;
txt_content.selectable = true;
txt_content.type = "dynamic";
txt_content.wordWrap = true;
txt_content.autoSize = true;
txt_content.border = false;
txt_content.html = true;
txt_content._x = 0;
txt_content._y = 0;
txt_content._width = 300;
[/font]

```

I m passing html text when duplicating each movieclip and assigning it to the textfield in the mc, but all the html code between tags is not showing up :// there is only flat text, everything in tags disseapears…

Its working if i m using a textarea but i cant find the same property like  
[font=Courier new][font=Verdana][/font][/font]

[font=Courier new][font=Verdana]

```auto
 [/font]
txt_content.autoSize = true;
[/font][font=Verdana]

```

[/font]

have you got anyidea plz ? thanks in advance.
