0

我在我的项目中设置了一个文本框,当我测试它时它工作正常,但是当我把它放在网页中时它只显示部分文本

这是设置替代文字

当我构建它时,我得到了这个替代文字,但是当我把它放到网络上时,我得到了这个替代文字

我试过同时使用嵌入和使用设备字体但没有成功有人知道我可能做错了什么吗?

编辑 这里是 acitonscript 中对文本框的唯一调用

function onLoaded(e:Event):void{
    try{
        //try to stuff
    } catch(error:TypeError) {
        error_txt.text = error.toString();
    }
}

    function ioError(e:IOErrorEvent):void {

        error_txt.text = e.text;    
    }
4

2 回答 2

0

What is the code you are using for setting the text? Since in the actual page 'Error #2124' is centered over the loading symbol, it looks to me like either that is the only text that actually ends up in error_txt OR the dynamic text's width and height are being changed so that 'Error #2124' is all that fits.

于 2011-01-14T14:29:46.157 回答
0

Quick guess, set the line behavior type to multiline

于 2011-01-14T14:31:17.907 回答