Tengo un mp3 player muy simple quehice a traves de un tutorial.
El codigo es:
Código actionscript:
Ver original
var mcPath:MovieClip = this; var timer:Number = 0; var wTime:Number = mcTime._width; var music:Sound = new Sound(); music.loadSound("music/denea.mp3", false); music.onLoad = function() { startProgress(); btPlay.enabled = true; } music.onSoundComplete = function() { timer = 0; btPlay._visible = true; stopProgress(); } function startProgress() { delete mcPath.onEnterFrame; mcPath.onEnterFrame = function() { txtTime.text = "TIME: "+music.position+" / "+music.duration; mcTime._width = wTime*(music.position/music.duration); } } function stopProgress() { delete mcPath.onEnterFrame; } btPlay.enabled = false; btPlay.onRelease = function() { music.start(timer/1000); startProgress(); btPlay._visible = true; } btPause.onRelease = function() { music.stop() stopProgress(); btPlay._visible = true; }
Cuando se carga el sitio, automaticamente el mp3 comienza a streamear.
CÓMO HAGO PARA QUE SOLO COMIENCE A STREAMER UNA VEZ QUE SE CLICKEA "PLAY" Y NO ANTES?
Por favor ayuda, me imagino que debe ser una modificacion muy leve del codigo, un true/false o algo. Ayudaaaaaaa