Ver Mensaje Individual
  #14 (permalink)  
Antiguo 25/03/2003, 12:08
vik
 
Fecha de Ingreso: marzo-2003
Mensajes: 10
Antigüedad: 21 años, 1 mes
Puntos: 0
mmmm hay varios tipos de acciones para controlar la movie:
gotoAndStop()
gotoAndPlay()
nextFrame()
nextScene()
previousFrame()
previousScene()
stop()
stopAllSounds()
play()
on()

Aquí nos conviene usar gotoAndPlay(scene, frame)... entonces quedaría algo así

stop();
_root.onEnterFrame = function() {
todos = int(getBytesTotal()/1024);
ahora = int(getBytesLoaded()/1024);
if (ahora == todos) {
gotoAndPlay("scene1", 3)
}
cuantova = int(ahora*100/todos);
barra_mc.gotoAndStop(cuantova);
};

Suerte again