My problem is, how can I PAUSE my background music that automatic play in startup at specific page; and CONTINUE to playback the background music after leaving that specific page?
Thanks...
Professional Software Development Tools
My problem is, how can I PAUSE my background music that automatic play in startup at specific page; and CONTINUE to playback the background music after leaving that specific page?
Thanks...
How about on the particular Page Properties, add script to
On Preload
Audio.Pause(CHANNEL_BACKROUND);
On Close
Audio.Play(CHANNEL_BACKROUND);
Hope that helps
Still can't work...
When it leave, then it start play again, not continue...
However, thanks for your help!!!
CHange the above script to the following:
On Preload
Audio.Pause(CHANNEL_BACKGROUND);
AudioPos = Audio.GetCurrentPos(CHANNEL_BACKGROUND);
On Close
Audio.Seek(CHANNEL_BACKGROUND, 4, AudioPos);
Good luck
Yossi
I get it already, thanks!!!!