Jump to content
Fórum Script Brasil
  • 0

Formatação de texto


Hwarang

Question

Prezados, boa noite.

Estou aprendendo AS e sei que o código abaixo é básico, mas não consigo identificar o erro. Consigo gerar o campo de texto e importar o conteúdo do .TXT, mas não consigo fazer com que a formatação da fonte seja aplicada no SWF. Alguém identifica o erro no código abaixo? Desde já, grato!

=======

var externo:TextField = new TextField();

var externoReq:URLRequest = new URLRequest("externo.txt");

var externoLoad:URLLoader = new URLLoader();

var formato:TextFormat = new TextFormat();

formato.size = 30;

externoLoad.load(externoReq);

externoLoad.addEventListener(Event.COMPLETE, textoPronto);

externo.setTextFormat(formato);

externo.x = 175;

externo.y = 100;

externo.border = true;

externo.width = 200;

externo.height = 200;

externo.wordWrap = true;

addChild(externo);

function textoPronto(event:Event):void

{

externo.text = event.target.data;

}

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...