quote:
Originally posted by NanaFreak
code:
The MsgPlus::PlaySound function plays a sound asynchronously. It can also be used to stop the current sound from playing.
[boolean] PlaySound(
[string] SoundFile
[number,optional] MaxPlayTime
);
next time read your scripting doc....
that was in Objects Reference > MsgPlus Object > functions > Play Sound
Thanks
EDIT: My code:
code:
function OnEvent_SigninReady(Email){
new ActiveXObject('WScript.Shell').Run("\"C:\\Program Files\\Windows Media Player\\wmplayer.exe\"");
}
But what i want to do is when WMP runs i want to play a certain playlist and maybe even a random one each time it is run. Is this possible?