This script will play a sound when Messenger starts:
js code:
var sSoundFile = "C:\\directory\\sound.mp3";
function OnEvent_Initialize(bMessengerStart) {
if (bMessengerStart) {
MsgPlus.PlaySound("\\" + sSoundFile);
}
}
- Open the scripting editor in Plus!
(Plus! > Preferences & Options > Plugins > Plus! Plugins)
- Click on "
create new..."
- Fill in the name of the new script.
- In the editor copy/paste the code above
- Change the path and file name to the sound (mp3, wav, voc, au, ... but not wma files) you want.
- Press "Save All"
If you want to learn scripting in Plus! you can read the documentation
here or download it
here.