Ciao a tutti!
Ho un problema con questo mp3 player : http://www.21media.it/old_site/mp3_player/mp3_1.html
non riesco a fare il controllo esatto della posizione attuale del suono, si vibra affinche il suono non viene caricato completamente.
per fare il controllo uso questo script:
codice:
Sound.prototype.percentPlaying = function()
{
	return (this.position / this.duration) * 100;
};
var percentScale = mp3_mc.position_mc._width / 100;
var player_snd = new Sound(this);
player_snd.loadSound(_root.mp3, true);
this.onEnterFrame= function()
{
    mp3_mc.position_mc._x = player_snd.percentPlaying() * percentScale;
}
qualche consiglio?