I am using previous/next buttons to navigate through various screens. Each screen has its own voice over track.
If I hit the “Next” button in the middle of the track playing, then try to go back, the audio won’t play - most likely because the position is still sitting at wherever it was when the sound was stopped.
Is there a way I can reset the position? I am assigning the positiong to a variable (mySoundPosition), and have tried stting it to 0 (mySoundPosition=0), but that doesn’t seem to help. I know that the position is read-only, so I was hoping that somehow clearing the value of the variable would work.
Basically, I just need a way to start the sound over without having to envoke multiple start(); commands because that causes the sounds to essentially play twice, simultaneously, which doubles the volume.