Por sugerencia de un amigo puse un boton invisible dentro del movie clip que contiene a los botones (que en realidad tienen que ser movieclips para que el script funcione) y simplemente no realiza la accion. Tambien probe poner el boton invisible fuera del movie, sobre el elemento, pero con ello pierde la propiedad de movimiento.
Ojala que alguien pueda ayudarme... gracias
Código:
#include "lmc_tween.as" Stage.scaleMode = "noScale"; Stage.align = "TL"; // // voltar.enabled = false; voltar.useHandCursor = false; voltar._y = datos._y=estudios._y=trabajos._y=experiencia._y=especificos._y=contacto._y=40; // datos.tween("_y",0,1,"easeoutElastic",0.1); estudios.tween("_y",0,1,"easeoutElastic",0.2); trabajos.tween("_y",0,1,"easeoutElastic",0.3); experiencia.tween("_y",0,1,"easeoutElastic",0.4); especificos.tween("_y",0,1,"easeoutElastic",0.5); contacto.tween("_y",0,1,"easeoutElastic",0.6); // _global.itens = [datos, estudios, trabajos, experiencia, especificos, contacto]; _global.swfs = ["datos.swf", "estudios.swf", "trabajos.swf", "experiencia.swf", "especificos.swf", "contacto.swf"]; function fcn() { for (var i = 0; i<itens.length; i++) { if (i != selecionado) { itens[i].tween("_y", 0, 1, "easeoutElastic"); itens[i].enabled = true; itens[i].useHandCursor = true; } } } for (var i = 0; i<itens.length; i++) { itens[i].i = i; itens[i].onRollOver = function() { this.tween("_y", -10, 1, "easeoutElastic"); }; itens[i].onRollOut = itens[i].onReleaseOutside=function () { this.tween("_y", 0, 1, "easeoutElastic"); }; itens[i].onRelease = function() { _global.selecionado = this.i; if (swfs[selecionado] = "datos.swf") { loadMovie("swf/datos.swf", "_root.container"); } else { if (swfs[selecionado] = "estudios.swf") { loadMovie("swf/estudios.swf", "this._parent.container");} } this.tween("_y",-10,1,"easeoutElastic"); this.enabled = false; this.useHandCursor = false; fcn(); // this._parent.voltar.tween("_y", 0, 1, "easeoutElastic"); this._parent.voltar.enabled = true; this._parent.voltar.useHandCursor = true; }; } voltar.onRollOver = function() { this.tween("_y", -10, 1, "easeoutElastic"); }; voltar.onRollOut = function() { this.tween("_y", 0, 1, "easeoutElastic"); }; voltar.onRelease = function() { for (var i = 0; i<itens.length; i++) { itens[i].tween("_y",0,1,"easeoutElastic"); itens[i].enabled = true; itens[i].useHandCursor = true; this.tween("_y", 40, 1, "easeoutElastic"); this.enabled = false; this.useHandCursor = false; _root.alvo.loadMovie("home.swf"); } }; this.createEmptyMovieClip("bt_para",111); bt_para.beginFill(0xffffff, 0); bt_para.moveTo(-0, 0); bt_para._x = 140; bt_para._y = 105; bt_para.lineTo(largura, 0); bt_para.lineTo(largura, altura); bt_para.lineTo(0,altura); bt_para.lineTo(0, 0); bt_para.useHandCursor = false; bt_para.onRelease = function() { trace("nothing"); };