Comunidad de diseño web y desarrollo en internet online

Funcion as2

Citar            
MensajeEscrito el 01 Jul 2008 08:15 pm
hola a todos tengo el siguiente codigo de .as3

function setFont(event:Event):void
{
var format:TextFormat = new TextFormat();

format.font = new String(fontList.selectedItem.data);
sampleText.setTextFormat(format);
}


pero nesecito que me funcione en .as2

como seria ayuda por favor nesecito esto .....

Por zonwebperu

24 de clabLevel



Genero:Masculino  

firefox
Citar            
MensajeEscrito el 01 Jul 2008 08:31 pm
Es muy similar solo que... :

Código :

function setFont() {
     var format:TextFormat = new TextFormar();

     format.font = "Arial";   <<--- tipo de fuente;
     sampleText.setTextFormat(format);
}

Por CrASh_

21 de clabLevel



 

firefox
Citar            
MensajeEscrito el 01 Jul 2008 08:37 pm
hola gracias por tu ayuda

con este codigo cargo los fotns a un combo y

y tengo y textfiled con un texto si selecciono un tipo de fonts del combo debe de cambiar el texto:

var myFonts:Array = TextField.getFontList();
myFonts.sort();

cbo_fonts.dataProvider = myFonts;

Por zonwebperu

24 de clabLevel



Genero:Masculino  

firefox
Citar            
MensajeEscrito el 01 Jul 2008 11:00 pm

Código :

var myFonts:Array = TextField.getFontList();
myFonts.sort();

combo.dataProvider = myFonts;

var comboListener:Object = new Object();

combo.addEventListener("change", comboListener);

comboListener.change = function(evt:Object) {
   
   var estilo:TextFormat = new TextFormat();
   estilo.font = String(evt.target.selectedItem);
   
   texto.setTextFormat(estilo);
   
};

Por elchininet

Claber

3921 de clabLevel

17 tutoriales

Genero:Masculino  

Front-end developer at Booking.com

firefox
Citar            
MensajeEscrito el 01 Jul 2008 11:12 pm
tengo dos textfield textfield1 y texfield2
el primero texfield1 es dinamico permite ingresar texto en segundo no

el cual si yo ingreso texto en el primer textfield debe escribirse en el segundo texfield2

y si de doy color alineo a la izquierda o ala derecha centrado esos cambios deben reflejarse ne le segundo textfield .

hasta el momento he logrado

http://www.ihuari.com/pruebasflash/textformat.swf

ahi les dejo el .fla

http://www.ihuari.com/pruebasflash/textformat.fla

ingreasr el texto nada mas pero si le doy formato no funciona.

me pueden ayudar por favor

Por zonwebperu

24 de clabLevel



Genero:Masculino  

firefox

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.