Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AS3 TextField and TextFormat memory leak "other bitmap memory"

I've run into a memory leak problem during programming AS3.

I try to format a text in as3 and adding it to the stage, but there happens something crazy.

This is a part of my code:

var format:TextFormat = new TextFormat();
        format.size = 60;

        var t:TextField = new TextField();
        t.autoSize = TextFieldAutoSize.LEFT;
        t.text = "WWWWWWWWWWWWWWWW";
        t.setTextFormat(format);
        t.scaleX = 1;
        t.scaleY = 1;

        this.addChild(t);

The moment I add this textfield to my stage and check the memory usage with adobe scout CC the "other bitmap memory" shows nothing weird and acts just fine.

BUT...

When I run this code and add a capital W to the text the "other bitmap memory" goes crazy.

The crazy thing is when I add a letter I to the text it just runs normal.

I think it has something to do with the width or the size of the font. Increasing the font size will give the same problems.

Does anyone now how to prevent this problem???

Im working with adobe flash builder 4.7 and adobe scout cc.

like image 620
jeroenmuller Avatar asked Nov 01 '22 01:11

jeroenmuller


1 Answers

As you said, embedded fonts will fix this issue. In all the time I've used as3 I've only come across two honest to goodness bugs that actually prevent me from doing what the code should be doing. Both have involved textfields and font manipulation in very obscure ways.

like image 153
user3071888 Avatar answered Nov 11 '22 14:11

user3071888