0

プロジェクトにテキストボックスを設定していて、テストすると正常に機能しますが、Webページに配置すると、テキストの一部しか表示されません。

これがセットアップです代替テキスト

ビルドするとこれ代替テキストが表示されますが、Webに配置すると取得できます代替テキスト

埋め込みとデバイスフォントの両方を使用してみましたが、成功しませんでした。誰かが私が間違っている可能性があることを知っていますか?

ここで編集 するのは、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

簡単に推測して、行の動作タイプを複数行に設定します

于 2011-01-14T14:31:17.907 に答える