Page 1 of 1

One player at a time, please...

Posted: Thu Jun 18, 2009 11:36 pm
by 02Sideman
Hello all -
I'm new to Revolution and can't find a solution to this problem. I'm building a screen that has a list of 5 MP3's. I'm using 5 player objects, but I want to allow only 1 to play at a time. I also want each song to start at it's beginning. Is there a command that I can use for this? By the way I'm using Revolution Studio.

Any help would be greatly appreciated...

One player at a time, please...

Posted: Mon Jul 13, 2009 5:25 am
by edljr
02Sideman,

One of the great things about revolution, is that there are so many ways to skin a cat. Have you thought of using a single player and changing the filename of that player to the current song you want to play?

To ensure you are playing from the beginning of the audio file:

Code: Select all

set the currentTime of player "customPlayer" to 0
start player "customePlayer"
Ed