Hello,
I had the same problem as explained here:
* I have a first screen with an audio control, and a button to navigate to a second screen
* Second screen only has a button to return to first screen
* As long as you stay on the first screen, when you click in the audio control to play the sound, it works
* As soon as you move to the second screen and go back to the first screen, the audio control stops playing, even if you do a reset of the audio control
I opened a support ticket and the solution was that when you are in the second screen and navigate to the first screen, you do the reset of the audio control before you go back to the first screen.
So for instance:
* instead of just doing: Back();
* change it to: Reset( audiocontrol1 ); Back();
Regards, Victor.