Código:
Se crea un EmptyMovieClip y se le carga una imagen (_root.productos['imagen_inicio'+i]). Quiero que ese MC, esa imagen, sea clickeable._root.sc_home.createEmptyMovieClip("perchaCont"+j,100+j); _root.sc_home['perchaCont'+j].loadMovie(_root.productos['imagen_inicio'+i]); _root.sc_home['perchaCont'+j].id = i _root.sc_home['perchaCont'+j].onRelease = function (){ _root.hideSecciones(); _root.showSeccion('sc_productos'); _root.tipoProd = _root.productos['tipo'+this.id]; _root.sc_productos.setProd(false); _root.printProd(this.id); }
Pero el onRelease no esta funcionando.
Que puedo hacer?
Gracias