# Unable to personlize dynamic text properties

**URL:** https://forum.kirupa.com/t/unable-to-personlize-dynamic-text-properties/281159
**Category:** flash
**Created:** [February 5, 2009, 4:42pm UTC](https://forum.kirupa.com/t/unable-to-personlize-dynamic-text-properties/281159 "2009-02-05T16:42:06Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![mutkakokudka](https://avatars.discourse-cdn.com/v4/letter/m/a88e57/32.png) [@mutkakokudka](https://forum.kirupa.com/u/mutkakokudka)
#### Post date: [February 5, 2009, 4:42pm UTC](https://forum.kirupa.com/t/unable-to-personlize-dynamic-text-properties/281159/1 "2009-02-05T16:42:06Z")

</div>

Hello people,

I am very new to the forum and to Actionscript. I am stuck here with a problem and since 2 days i cannot resolve, i really don’t know why.

So i have a really nice flash gallery that i downloaded from a site but i am trying to personlize it. It uses a dynamic text (for the preloaders and the titles) which is post by this procedure :

fullPreloader.onLoadStart = function(target) {  
target.createTextField(“my\_txt”,fullImage\_mc.getNextHighestDepth(),50,50,200,20);  
target.my\_txt.selectable = false;  
};

So what i did was basically to create a new style (my\_fmt) and apply it to dynamic style applied by default (my\_txt) :

fullPreloader.onLoadStart = function(target) {  
target.createTextField(“my\_txt”,fullImage\_mc.getNextHighestDepth(),0,0,200,20);  
target.my\_txt.selectable = false;

```
    var my_fmt:TextFormat = new TextFormat();
    my_fmt.font = "Swis721 BlkEx BT";
                
    target.my_txt.setTextFormat(my_fmt);

```

Anway nothing changes. The text is always the same (Times New Roman which is by default) I also tried to change de height and width definitions but no difference. It only works when i change the x and y position of the text.

Any help is appreciated. Thanks

I attach you the original .fla file in case you need (CS3 file)
