What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Send SMS text on contact sign in

Send SMS text on contact sign in
Author: Message:
whiz
Senior Member
****


Posts: 568
Reputation: 8
– / – / Flag
Joined: Nov 2008
RE: Send SMS text on contact sign in
In terms of editing XML files, there isn't a built-in editor in the Plus! script editor, so I recommend Notepad++.

Also, you can enable and disable controls based on whether a checkbox is ticked like this:
Javascript code:
Interop.Call("user32", "EnableWindow", /* window */.GetControlHandle(/* control ID */), /* boolean */);


For example, to enable a button called "BtnOk" when a checkbox called "ChkConfirm" is ticked:
Javascript code:
function OnAboutEvent_CtrlClicked(PlusWnd, ControlId)
{
    Interop.Call("user32", "EnableWindow", PlusWnd.GetControlHandle("BtnOk"), PlusWnd.Button_IsChecked("ChkConfirm"));
}

06-01-2010 10:34 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Send SMS text on contact sign in - by ProtoZoa on 07-12-2009 at 12:10 PM
RE: Send SMS text on contact sign in - by warmth on 07-12-2009 at 07:06 PM
RE: Send SMS text on contact sign in - by ProtoZoa on 07-20-2009 at 05:58 AM
RE: Send SMS text on contact sign in - by piggieshorts on 08-09-2009 at 05:47 AM
RE: Send SMS text on contact sign in - by CookieRevised on 08-12-2009 at 06:38 AM
RE: Send SMS text on contact sign in - by cRuNcHeR on 08-18-2009 at 03:16 PM
RE: Send SMS text on contact sign in - by matty on 08-18-2009 at 05:46 PM
RE: RE: Send SMS text on contact sign in - by CookieRevised on 08-19-2009 at 01:52 AM
RE: Send SMS text on contact sign in - by cRuNcHeR on 08-18-2009 at 06:15 PM
RE: Send SMS text on contact sign in - by cRuNcHeR on 08-19-2009 at 02:31 AM
RE: Send SMS text on contact sign in - by CookieRevised on 08-19-2009 at 03:18 AM
RE: RE: Send SMS text on contact sign in - by cRuNcHeR on 08-19-2009 at 04:30 AM
RE: Send SMS text on contact sign in - by ProtoZoa on 05-24-2010 at 12:49 AM
RE: Send SMS text on contact sign in - by whiz on 06-01-2010 at 10:34 AM
RE: Send SMS text on contact sign in - by ProtoZoa on 06-03-2010 at 07:16 AM
RE: Send SMS text on contact sign in - by CookieRevised on 06-03-2010 at 02:43 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