20/11/2007, 19:07
|
| Moderador | | Fecha de Ingreso: julio-2003 Ubicación: Lima - Perú
Mensajes: 16.726
Antigüedad: 21 años, 4 meses Puntos: 406 | |
Re: Problemas con texto dinamico Si tu botón tiene como nombre de instancia: cargarTh1_btn y el campo de texto dinámico como var: horitzontal, está en la película galería.
El código en el frame debería ser así:
cargarTh1_btn.onRelease = function() {
horitzontal="ref-Tharrats01";
};
Si el campo de texto está en la pricipal y lo estás cargando dentro de un MC_vacío, el código sería así:
cargarTh1_btn.onRelease = function() {
_root.horitzontal = "ref-Tharrats01";
};
Si lo cargas por niveles en la principal, el código sería así:
cargarTh1_btn.onRelease = function() {
_level0.horitzontal = "ref-Tharrats01";
};
Espero haberte sido de ayuda. |