tengo un menu en un flash, cuando previsualizo (ctrl+intro) funciona correctamente, pero a la hora de exportar el flash, deja de funcionar... este su codigo en diferentes frames:
 
carga los datos de un txt...
------------------------------------------------------
 
loadVariables("cromdropdown2.txt", this);
 
------------------------------------------------------
 
menusource.stop();
menusource._visible=false;
var disFromMenuBox=5;
var dis=menuSource._height;
var menuOpen=false;
stop();
 
------------------------------------------------------
se despliega..
 
Dx=_xmouse;
Dy=_ymouse;
Mtop=mainBox._y - ( mainBox._height )/3;
Mbott=this["menu"+ nItems]._y + this["menu" + nItems]._height+5;
Mright=this["menu"+ nItems]._x +(this["menu"+ nItems]._width +5);
Mleft=this["menu"+ nItems]._x-5;
if (Dx<Mleft or Dx>Mright or Dy<Mtop or Dy>Mbott) {
	menuOpen=false;
	for (var i = 1; i<=nItems; i++) {
		this["menu"+i].play();
	}
	gotoAndStop(2);
}
 
for (var i = 1; i<=nItems; i++) {
	this["menu"+i].textItem.textbox = this["menuT"+i];
}
 
-----------------------------------------------------------------------------
 
gotoAndPlay("open");
 
 
----------------------------------------------------------------------------- 
  
 
