Advanced Flash Components
Search!
Search!
Home >  Knowledge Base >  Simple MP3 Player >  I was wondering something about...
I was wondering something about your mp3 player?
Date: Jul 31, 2007   Views: 1978  
Question:
Can I add buttons like next and previous play and pause etc etc? And does the component come with a tutorial on how to do this?
Answer:

andreit (Admin)
You can add your own controls to the component. There is no tutorial on this exact subject but there are several posts on our forum that address this very issue. You can create a simple button and call MP3 Player's method from onRelease handler. For example:

pauseButton.onRelease = function (){
myMP3Player.pause();
}