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.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With