What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Wnd.MessageSend()

Wnd.MessageSend()
Author: Message:
Hengy
Junior Member
**


Posts: 16
Joined: Jul 2006
O.P. Wnd.MessageSend()
code:
if (Message == "/whatever")
{
      Wnd.MessageSend("Whatever")
}

In this code, "/whatever" is sent as a message and "Whatever" is also sent as a message. But, in the code, "/whatever" is not:

code:
if (Message == "/whatever")
{
     return "whatever"
}

How can I modify the first code to not send "/whatever", like in the second code?
07-23-2006 04:03 PM
Profile PM Find Quote Report
foaly
Senior Member
****

Avatar

Posts: 718
Reputation: 20
38 / Male / Flag
Joined: Jul 2006
RE: Wnd.MessageSend()
ehm something like this:
code:
if (Message == "/whatever")
{
      Wnd.MessageSend("Whatever");
      return "";
}

07-23-2006 04:05 PM
Profile E-Mail PM Find Quote Report
Hengy
Junior Member
**


Posts: 16
Joined: Jul 2006
O.P. RE: Wnd.MessageSend()
lol... i don't know why I didn't think of that myself *-) Thanks!
07-23-2006 04:09 PM
Profile PM Find Quote Report
foaly
Senior Member
****

Avatar

Posts: 718
Reputation: 20
38 / Male / Flag
Joined: Jul 2006
RE: Wnd.MessageSend()
no problem :)
07-23-2006 04:09 PM
Profile E-Mail PM 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