Ver Mensaje Individual
  #9 (permalink)  
Antiguo 08/08/2004, 15:19
Avatar de pulento
pulento
 
Fecha de Ingreso: noviembre-2002
Ubicación: En un pequeño, helado, obscuro reino... llamado Dinamarca.
Mensajes: 1.852
Antigüedad: 21 años, 5 meses
Puntos: 1
Con respecto a los fondos embetidos...
Tambien los puedes embetir con AS..

Aqui un ejemplo..:

code->

//Creamos el Formato para el Texto
formato = new TextFormat();
formato.font = "Bas Relief";//esta es la fuente elegida
formato.color = 0x000000;
formato.bold = true;
formato.size = 14;
formato.multiline=true;
//Creamos el MC Donde estara el Campo de texto
_root.createEmptyMovieClip("mc",1)
//Creamos el Campo de texto
mc.createTextField("caja",1,70,50,200,100);
mc.caja.setNewTextFormat(formato);
mc.caja.autoSize = true;
mc.caja.border = true;
mc.caja.text = "TextoTextoTexto TextoTextoTexto TextoTextoTexto TextoTextoTexto"
//Aqui Exportamos la Fuente
texto.caja.embedFonts = true;//le metimos las fuentes.


Salu2
__________________
http://www.flotdesign.dk/