我在CS6上使用AS3并在TextField中设置文本。我有几个不同的领域有这个问题。
有时,当我测试应用时,文本字段显示为空或有时会丢失字符。这不会一直发生并且看起来是完全随机的,我甚至不需要改变任何东西以便它回来。
字体是嵌入式的,无论如何都不应该是问题,因为它会在我不时重新运行测试时随机消失并重新出现。
所有文本字段都不会发生。这是+ ADD按钮的代码
var textFormat:TextFormat = (buyButton_mc.getChildByName("buyText") as TextField).getTextFormat();
var buyButtonText = (buyButton_mc.getChildByName("buyText") as TextField);
var btnBg = (buyButton_mc.getChildByName("btn_bg") as MovieClip);
buyButtonText.embedFonts = true;
textFormat.size = (minRowHeight - 2) - 8;
textFormat.color = BubbleStoreMain.instance.licenseBoxColors['selected']['text'];
buyButtonText.text = "+ADD";
buyButtonText.y -= 3;
buyButtonText.setTextFormat(textFormat);