What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Contact singout script, need some advice

Contact singout script, need some advice
Author: Message:
scutterman
Junior Member
**

Avatar
-- Scutterman avatar from Runescape

Posts: 21
– / Male / Flag
Joined: Jul 2007
O.P. RE: Contact singout script, need some advice
Hi, just a quick not to say that the script:
code:

    if (name.length > 17)
    {
    name = name.substr(17) + '...';
    }



cut off everything from character 0 to 16. After a bit of playing around with it I worked out that it should have been:

code:

    if (name.length > 17)
    {
    name = name.substr(0,17) + '...';
    }



Just thought I'd mention it in case any other scripters look at this thread looking for a similar thing

later
~~Scutterman~~

Of course the world doesn't make sense
Its only purpose is to be somewhere that
humans can stand around in complaining
that the world doesn't make sense


08-20-2007 01:02 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Contact singout script, need some advice - by scutterman on 08-17-2007 at 12:19 PM
RE: Contact singout script, need some advice - by matty on 08-17-2007 at 01:07 PM
RE: Contact singout script, need some advice - by scutterman on 08-17-2007 at 03:27 PM
RE: Contact singout script, need some advice - by scutterman on 08-20-2007 at 01:02 PM


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