What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » WakeUp Call???

WakeUp Call???
Author: Message:
MisterJef
New Member
*


Posts: 2
32 / Male / –
Joined: Jan 2008
O.P. WakeUp Call???
hey i would like to know if there is a way to make a script that some does like ^wakeup and the computer does a music or sound with internal speaker is there a way???
01-29-2008 08:53 PM
Profile E-Mail PM Find Quote Report
mynetx
Skinning Contest Winner
*****

Avatar
Microsoft insider

Posts: 1175
Reputation: 33
36 / Male / Flag
Joined: Jul 2007
RE: WakeUp Call???
Well, you can write a script implementing the function OnEvent_ChatWndReceiveMessage and playing an attached media file using MsgPlus.PlaySound, something like this here:
code:
var MSGKIND_SAYS = 1;
function OnEvent_ChatWndReceiveMessage(wndChatWnd, strOrigin, strMessage, intMessageKind) {
    if(strOrigin == Messenger.MyName || strMessage != "!wakeup" || intMessageKind != MSGKIND_SAYS)
        return strMessage;
    MsgPlus.PlaySound("Sounds\\wakeup.mp3");
    return strMessage;
}

However, the script would have to be installed on the recipient's side, that is, the one you want to make awake.

Big note: Messenger Nudging function is supposed to do just that, and its advantage is that no script is needed on neither side.

This post was edited on 01-29-2008 at 09:02 PM by mynetx.
mynetx - Microsoft, enhanced.

You have a problem or issue with Windows, Internet
Explorer or Office?
Send a tweet!
01-29-2008 09:01 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On