Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/03/2010, 16:01
Avatar de Kottore
Kottore
 
Fecha de Ingreso: octubre-2007
Mensajes: 170
Antigüedad: 17 años, 1 mes
Puntos: 8
Respuesta: checkbox con InputText

Supongamos que el texto se llama txtTexto, el boton es btn1 y los checkBox son chk1, chk2 y chk3. Iría algo así:

Código ActionScript:
Ver original
  1. btn1.onRelease=function(){
  2. txtTexto.text="";
  3.     if(chk1.value==true){
  4.         txtTexto.text= "opción 1 ";
  5.     }
  6.     if(chk2.value==true){
  7.         txtTexto.text+= "opción 2 ";
  8.     }
  9.     if(chk3.value==true){
  10.         txtTexto.text+= "opción 3";
  11.     }
  12. }

Saludos ^_^