you can create 2 buttons 1 for stop and 1 for play

where my 2 buttons are named musicoff = off button and musicon = on button

stop music
Code:
musicoff_btn.onRelease = function(){
	_root.my_music.stop();
}
start music
Code:
musicon_btn.onRelease = function(){
	_root.my_music.start();