Shoutbox

Messenger Plus should support "/me" - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: WLM Plus! Bug Reports (/forumdisplay.php?fid=7)
+----- Thread: Messenger Plus should support "/me" (/showthread.php?tid=87116)

Messenger Plus should support "/me" by cubefox on 11-06-2008 at 12:19 PM

If you type in messenger plus "/me pokes you", msg plus sends "ĢI pokes you" instead. You can observe this behaviour when you chat with a person who has no messenger plus, e.g. the normal live messenger or an other messengers: They only see "ĢI pokes you".

The point is, that many messengers like trillian, pidgin and others can handle /me (so "/me pokes you" gets displayed as "username pokes you"), but msg plus don't sends "/me" but "ĢI".

So if for example, a trillian contact sends you "/me pokes you"; you (with msg plus) don't see "username pokes you". You see only "/me pokes you".
And if you (with msg plus) say to a trillian/pidgin/kopete/... contact "/me pokes you", msg plus sends "ĢI pokes you" and the contact can only see this "ĢI pokes you".

Therefore, messenger plus should send and accept "/me" instead of "ĢI", because it's much more compatible to other programs.


RE: Messenger Plus should support "/me" by markee on 11-06-2008 at 12:48 PM

Messenger Plus was using this feature before either of those programs became popular.  For backwards compatibility purposes, Messenger Plus! should not change, however it might be nice to parse "/me" as well as "ĢI"

I don't think it should be changes to send "/me" as this means that it is not compatible with a lot of machines running MP! 3.x and people who won't upgrade MP!L.


RE: RE: Messenger Plus should support "/me" by cubefox on 11-06-2008 at 06:34 PM

quote:
Originally posted by markee
Messenger Plus was using this feature before either of those programs became popular.
no, mirc and (and other chat programs) had this feature before messenger plus was released. I think, trillian had this feature earlier, too. In fact, much more programs use "/me" than "ĢI" (only messenger plus).


quote:
Originally posted by markee
I don't think it should be changes to send "/me" as this means that it is not compatible with a lot of machines running MP! 3.x and people who won't upgrade MP!L.
I think there are more users using trillian/miranda/pidgin/kopete... than MP 3.x users.
RE: Messenger Plus should support "/me" by markee on 11-07-2008 at 11:45 AM

Looking through the history, this feature has been around since MP! 1.40 way back in October 2001.

Trillian had added the feature before April of 2001, so yes they were first, I will admit that, but neither should change a method of doing it after such a length of time.

I concede that MP! would have less users, however 50million is quite significant!

I really believe that MP!L should interpret "/me" as it does its own commands, but I don't think it should send it out differently to what it has previously for compatibility purposes.


RE: Messenger Plus should support "/me" by ShawnZ on 11-07-2008 at 01:02 PM

quote:
Originally posted by cubefox
mirc

aside from mirc not being an instant messaging program, it does /me completely differently anyway :p
RE: Messenger Plus should support "/me" by Matti on 11-07-2008 at 05:00 PM

Also, if Plus! should parse "/me" in received messages, that somewhat ignores the command escaping feature.

Imagine this scenario:

  1. The contact sends a message:
    code:
    //me is a cool command
  2. The user receives the message:
    code:
    /me is a cool command
  3. In the case the Plus! should replace that incoming message with "* User is a cool command", it basically destroys the idea of the contact about sending escaped commands.
I don't think it's such a great idea... :S
RE: Messenger Plus should support "/me" by cubefox on 11-09-2008 at 05:40 PM

I didn't hear about the "command escaping feature". Is it really more important than /me? I guess /me is much more often used.


RE: RE: Messenger Plus should support "/me" by Vilkku on 11-09-2008 at 06:08 PM

quote:
Originally posted by cubefox
I didn't hear about the "command escaping feature". Is it really more important than /me? I guess /me is much more often used.
I never use /me but use // all the time, as you can start messages with a / without Plus! complaining.
RE: Messenger Plus should support "/me" by Menthix on 11-09-2008 at 06:14 PM

quote:
Originally posted by cubefox
I didn't hear about the "command escaping feature". Is it really more important than /me? I guess /me is much more often used.
Sending action messages as "/me" wouldn't even be possible without the "command escaping feature". As Vilkku said, without it you wouldn't be able to send any text starting with / (slash).
RE: Messenger Plus should support "/me" by markee on 11-10-2008 at 02:17 AM

Here is some script code that you can use to reproduce this feature how you want it to.  Please note that all of your MP!L contacts will now see "/me" when you send one of these messages though.

code:
function OnEvent_ChatWndSendMessage(ChatWnd, Message){
    return Message.replace(/^\/(\/me\s)/i,"$1");
}
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MsgKind){
    return Message.replace(/^\/me(\s)/i,"ĢI$1");
}

Also note, I did not test this, but it should be fine.
RE: Messenger Plus should support "/me" by Voldemort on 11-10-2008 at 03:36 AM

It's a known limitation. (iirc, i think i am)