What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » WLM Plus! General » Msgplus tags in a webmessenger

Msgplus tags in a webmessenger
Author: Message:
etiennea
Junior Member
**


Posts: 55
Reputation: 2
37 / Male / –
Joined: Jun 2005
O.P. Msgplus tags in a webmessenger
Hey,

I would like to know wether someone here would like to help my project by writing a bit of code for me. 

I have a webbased msn messenger client and I would like to make it the first webbased msn client to support plusparsing! I think it would be very simple to do I just don't have much time uni is very hard!

The first thing I would need a javascript function to parse color nicknames and the emoticons in there. Auhtors will be credited. The webmessenger is on http://www.mmclient.com

Thanks a lot
Etienne
11-26-2005 03:52 PM
Profile E-Mail PM Web Find Quote Report
RaceProUK
Elite Member
*****

Avatar

Posts: 6073
Reputation: 57
39 / Male / Flag
Joined: Oct 2003
RE: Msgplus tags in a webmessenger
Here's some C(++) that I use to strip formatting codes in Phoenix (for toats); maybe you can base your code on it.
code:
void stripFormat(WCHAR *from, WCHAR *result) {
  wcscpy(result, L"\0");
  while (*from != L'\0') {
    if (*from == L'·') {
      from++;
      if (*from == L'$') {
        from++;
        if (*from <= L'9' && *from >= L'0') from++;
        if (*from <= L'9' && *from >= L'0') from++;
        if (*from == L'#') from+=7;
      }
      else if (*from == L'0' ||
        *from == L'\'' ||
        *from == L'@' ||
        *from == L'#' ||
        *from == L'&')
        from++;
      continue;
    }
    wcsncat(result, from, 1);
    from++;
  }
}
Edit: Please, please, please! Make code preserve tabs!

This post was edited on 11-28-2005 at 11:45 PM by RaceProUK.
[Image: spartaafk.png]
11-28-2005 11:42 PM
Profile PM Web Find Quote Report
etiennea
Junior Member
**


Posts: 55
Reputation: 2
37 / Male / –
Joined: Jun 2005
O.P. RE: Msgplus tags in a webmessenger
thanks but thats not exactly what I want it to do. I know more less how to do it its just I don't have much time at the moment. Anyone who knows javascript and with a few hours of spare time on their hands wanting to contribute to a nice project should contact me i will send a load of info.
11-30-2005 03:10 PM
Profile E-Mail PM Web Find Quote Report
-dt-
Scripting Contest Winner
*****

Avatar
;o

Posts: 1819
Reputation: 74
35 / Male / Flag
Joined: Mar 2004
RE: Msgplus tags in a webmessenger
Ill do it :P. contact me on msn your not online atm.....
[Image: dt2.0v2.png]      Happy Birthday, WDZ
11-30-2005 03:22 PM
Profile 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