03/12/2007, 09:57
|
| | | Fecha de Ingreso: octubre-2007 Ubicación: Barcelona, España
Mensajes: 551
Antigüedad: 17 años, 1 mes Puntos: 5 | |
Re: obtener valor de combobox Yo he hecho esta prueba y funciona correctamente:
1. arrastro un componente comboBox al stage(hoja de flash o _root) y lo llamo "combo_cb"
2. arrastro un componente textInput al stage y lo llamo textInput_ti
en el 1er fotograma del _root ingreso lo siguiente:
var listenerObject:Object = new Object();
listenerObject.change = function(eventObject:Object) {
textInput_ti.text = eventObject.target.getValue();
};
combo_cb.addEventListener("change", listenerObject);
Si quieres dale un ojo a mi nuevo juego (beta) "PanQueso", link en mi firma. saludos. |