Ok... going a little crazy here. Like I said before the offset idea worked but it is slightly off and so no use. I really want to get the pause idea to work between two scenes but I cannot do it.
I can ToggleSoundPause inside of a scene using 3 scripts and calling them when I need them.
The first one start the sound (which I have inside of a table) like so:
startSound(tSnd["song"], {flags=1, volume=50, loop=true, offset=10000})
The second script pauses the sound like so:
set1 = getSoundId(tSnd["song"])
toggleSoundPause(set1)
The third unpauses the sound like so:
set2 = getSoundId(tSnd["song"])
toggleSoundPause(set1)
Like I said all of this works inside of a scene. When I try to put the third script at the beginning of a new scene the sound just wont come back on.
Any ideas to why this is happening?