Ver Mensaje Individual
  #9 (permalink)  
Antiguo 09/02/2010, 13:35
gersonmaba
 
Fecha de Ingreso: abril-2007
Mensajes: 156
Antigüedad: 17 años
Puntos: 3
Respuesta: Ayuda con Slide Presentation.

Hola DiegoAzul. Muchisisisisisimas Gracias por tu colaboracion , opinion ayuda, interes etc. muchas gracias.

Bueno te cuento que navengando y navegando y buscando y buscando por fin encontre como se realizaba lo que yo queria. el codigo es el siguiente, lo posteo aqui porque se que depronto a alguien le pueda servir.

Bt1.onRelease = function(){
if ((_root.presentation.SistemaOseo != undefined) && (_root.presentation.SistemaOseo != null)) {
var screen = null;
var target = this;
while ((screen == null) && (target != undefined) && (target != null)) {
if (target instanceof mx.screens.Screen) {
screen = target;
} else {
target = target._parent;
}
}
if (screen instanceof mx.screens.Slide) {
screen.gotoSlide(_root.presentation.SistemaOseo);
_root.presentation.SistemaOseo.gotoAndStop(1);
}
}
}

Muchas Gracias por su colaboracion.