Hi there,
Nice item but can I have it start without sound and allow people to press play?
I tried reversing the action script around but its like a janitor trying to do heart surgery. 
If you could upload the opposite action script that would be awesome, because I want several players on one page for different tracks.
thanks
Posted 8 months ago















































;
}
//Hides the play button on start
controlbar_mc.pause_btn._visible=false;
controlbar_mc.play_btn.enabled=true;
//Stops the sound onPress and the equalizer
controlbar_mc.pause_btn.onPress = function(){
mySound_sound.stop();
controlbar_mc.play_btn._visible=true;
controlbar_mc.play_btn.enabled=true;
controlbar_mc.pause_btn._visible=false;
controlbar_mc.pause_btn.enabled=false;
equ.gotoAndPlay(“end”











