What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Script question and 2 msn questions.

Script question and 2 msn questions.
Author: Message:
Ashylay
Junior Member
**

Intermediate Scripter

Posts: 70
Reputation: 1
– / Male / –
Joined: Mar 2007
O.P. Script question and 2 msn questions.
Okay so I have got the NameEditor script which I love btw and I was just tinkerin with the script to add some more things into it because I was bored.

I was just wondering though:

1) What is the limit of characters you can have in your MSN Name
2) What is the limit of characters you can have in your PSM
3) Is there a way to limit the amount of charcters enterd into a textbox in a MsgPlus!Live Window

This post was edited on 07-21-2007 at 02:08 PM by Ashylay.
07-21-2007 02:07 PM
Profile E-Mail PM Find Quote Report
_Humphreys
Veteran Member
*****


Posts: 1140
Reputation: 20
24 / – / Flag
Joined: Nov 2003
Status: Away
RE: Script question and 2 msn questions.
According to word;

129 characters for MSN Name
129 characters for PSM

This is probably wrong though...

This post was edited on 07-21-2007 at 02:12 PM by _Humphreys.
AC3
07-21-2007 02:10 PM
Profile PM Find Quote Report
GNSPS
Junior Member
**

Avatar
Coding is man's best friend...

Posts: 40
31 / Male / Flag
Joined: Oct 2006
RE: Script question and 2 msn questions.
Yes, there is a way to limit the amount of characters to enter in a textbox in a MP!L window, all you have to do is to edit the XML file or the script's code in order for them to don't allow more characters than those specified.
07-21-2007 02:34 PM
Profile E-Mail PM Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: Script question and 2 msn questions.
quote:
Originally posted by GNSPS
Yes, there is a way to limit the amount of characters to enter in a textbox in a MP!L window, all you have to do is to edit the XML file or the script's code in order for them to don't allow more characters than those specified.
IIRC there is no way to specify the maximum amount of characters you can enter in an EditControl directly in the XML; there are no attributes for it.

However, you can specify the maximum amount by sending the EM_SETLIMITTEXT or EM_LIMITTEXT windows message (both are identical) to the control by using the Plus! scripting function: PlusWnd::SendControlMessage.

See Official Plus! Scripting Documentation.

eg:
code:
// create window with id 'Information'
var wndExample = MsgPlus.CreateWnd('interface.xml', 'Information');     
// send windows message EM_LIMITTEXT (constant value 0xC5) to the control with id 'PhoneNumber'
wndExample.SendControlMessage('PhoneNumber', 0xC5 /* EM_LIMITTEXT */, 9 /* maximum allowed characters */, 0 /* not used */)

This post was edited on 07-21-2007 at 05:11 PM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
07-21-2007 04:58 PM
Profile 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