by CarlitoGil » Wed Feb 16, 2011 3:30 am
I want to play some files with an external application.
How can I stop a song from playing before any sound is played?
Code: Select all
Call Script.RegisterEvent(SDB,"OnPlay","EventOnPlay")
Sub EventOnPlay()
SDB.Player.Stop() ' By the time this is called it has already played a second or so
End Sub
I want to play some files with an external application.
How can I stop a song from playing before any sound is played?
[code]
Call Script.RegisterEvent(SDB,"OnPlay","EventOnPlay")
Sub EventOnPlay()
SDB.Player.Stop() ' By the time this is called it has already played a second or so
End Sub
[/code]