Comunidad de diseño web y desarrollo en internet online

radioButton

Citar            
MensajeEscrito el 04 Ene 2009 07:23 pm
Hola,
estoy creando unos cuestionarios en una aplicación flash y necesito poner el label del radioButton en varias líneas pues es muy grande y se sale del escenario. En actionscript 2 se puede con Label.multiline pero no doy con ello en actionscript 3. Además me gustaría darle formato y con setStyle no lo consigo:

Código :

rad1_1.setStyle("fontSize", 20);


un saludo

Por Bea

12 de clabLevel



 

Asturias

firefox
Citar            
MensajeEscrito el 05 Ene 2009 08:05 pm

Código ActionScript :

import fl.controls.RadioButton;

var rb:RadioButton = new RadioButton();

var format:TextFormat = new TextFormat(); //Necesitamos crear un objeto TextFormat para dar formato al textfield que contiene el radio button
format.font = "Myriad Pro";
format.color = 0xFFFFFF;
format.size = 14;

rb.x = 225;
rb.y = 125;

rb.label = "This is text\nThis is text\nThis is text"; //Aqui utilizamos el delimitador de linea "\n" para... bueno, cambiar de linea 
rb.setStyle("textFormat", format);
rb.textField.autoSize = TextFieldAutoSize.LEFT;
rb.textField.multiline = true;

addChild(rb);


Recuerda utilizar [ as] [ /as] para código actionscript en lugar de [ code] [ /code]

Por Carloz

BOFH

3426 de clabLevel

38 tutoriales

1 ejemplo

 

safari

 

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