What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » find out exact text of someone's message.. (something like that)

find out exact text of someone's message.. (something like that)
Author: Message:
ash44455666
New Member
*


Posts: 10
Joined: Aug 2007
O.P. RE: find out exact text of someone's message.. (something like that)
I found out the problem :) and ty mattike that helped too :D
The problem was
code:
if (sMessage.charAt(0) == '!') {
     if(sMessage.charAt(1) == '!') return sMessage;
     else var parts = sMessage.split(" ");
}

needed to be
code:
if (Message.charAt(0) == '!') {
    if(Message.charAt(1) == '!') return Message;
    else var parts = Message.split(" ");
}

Thanks for the idea with the debugger it's a life saver for us beginners (and probably the more advanced programmers too).
09-01-2007 07:05 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
find out exact text of someone's message.. (something like that) - by ash44455666 on 08-31-2007 at 09:17 PM
RE: find out exact text of someone's message.. (something like that) - by foaly on 08-31-2007 at 10:20 PM
RE: find out exact text of someone's message.. (something like that) - by ash44455666 on 08-31-2007 at 10:39 PM
RE: find out exact text of someone's message.. (something like that) - by foaly on 08-31-2007 at 10:41 PM
RE: find out exact text of someone's message.. (something like that) - by ash44455666 on 08-31-2007 at 10:53 PM
RE: find out exact text of someone's message.. (something like that) - by ash44455666 on 08-31-2007 at 11:24 PM
RE: find out exact text of someone's message.. (something like that) - by matty on 08-31-2007 at 11:27 PM
RE: find out exact text of someone's message.. (something like that) - by ash44455666 on 08-31-2007 at 11:32 PM
RE: find out exact text of someone's message.. (something like that) - by Matti on 09-01-2007 at 10:05 AM
RE: find out exact text of someone's message.. (something like that) - by ash44455666 on 09-01-2007 at 07:05 PM
RE: find out exact text of someone's message.. (something like that) - by Matti on 09-02-2007 at 09:22 AM


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