Codigo en CMPONENTE = combo
on(change){
trace(this.value);
_global.navegacion_historial(this.value);
}
Codigo en Frame...
_global.crear_estructura=function(id)
{
_root.statusBar.mistatus=_global._conf.firstChild.childNodes[9].childNodes[1].childNodes[10].firstChild.nodeValue;
_global.nodos.load(_global.URLNodos+"?xmlOperationType=1&dimensionId="+id);
};
_global.navegacion_historial2=function(txtide){
_global.informacion.gotoAndPlay("s3");
_global.kill_them_total();
_global.eliminacion();
_global.history=true;
_global.crear_estructura(txtide);
};
///
_global.navegacion_historial=function(txtide){
existe=false;
if(_root.panel.caja_ref[0].id!=txtide)
{
for(y=1; y<_root.panel.caja_ref.length; y++)
{
if(txtide==_root.panel.caja_ref[y].id)
{
existe=true;
break;
};
};
if(existe)
{
trace("comprobacion de entrada a funcion");
_global.pasar_al_centro(_root.panel.caja_ref[y]);
}
else
{ _global.informacion.gotoAndPlay("s3");
_global.kill_them_total();
_global.eliminacion();
_global.crear_estructura(txtide);
};
};
};