Hola de nuevo, supongo que dentro de esta función tiene que estar el problema:
Código:
// Función para cargar el vídeo
//---------------------------------------------------------------------------------------------------------------------
function videoLoader(vid) {
//trace("vid="+vid);
var listenerObject:Object = new Object();
listenerObject.playheadUpdate = function(eventObject:Object):Void {
Position = Math.round(stage_video.playheadPercentage);
if (Position>=100) {
stage_video.stop();
play_btn.enabled = true;
pause_btn.enabled = false;
pause_btn.swapDepths(play_btn);
_root.videoPlaying = false;
if (_root.sound) {
_root.suono.start();
_root.console.btn_sound.gotoAndPlay("open");
}
}
};
stage_video.addEventListener("playheadUpdate",listenerObject);
//video url
stage_video.contentPath = vid;
a ver si alguien me puede echar un cable
muchas gracias