What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » Search » Results

Search Results
Subject Author Forum Time
RE: Creating a Command?
Meaning? @the comment about forgetting case 2 STATUS_OFFLINE (1) STATUS_ONLINE (3) STATUS_BUSY (4) STATUS_BRB (5) STATUS_IDLE (6) STATUS_AWAY (7) STATUS_INCALL (8) STATUS_OUTLUNCH (9) It had no need being there since there is no enumeration for 2, i...
Samo502Scripting10-01-2009 at 06:51 PM
RE: Creating a Command?
[code=js]function OnGetScriptCommands() { var bEnabled = (Messenger.MyStatus > STATUS_INVISIBLE); var oCommand = new Commands(); with(oCommand) { if ( bEnabled === true ) { AddCommand('dispc', 'Displays online...
Samo502Scripting10-01-2009 at 06:12 PM
RE: Creating a Command?
It works now to a point, it brings up my command in the list but when I hit enter it says it isn't a command.
Samo502Scripting10-01-2009 at 05:47 PM
Creating a Command?
[code=js]function OnEvent_ChatWndSendMessage(ChatWnd, Message) { if(Message.substring(0, 6) == "/dispc") { var Contacts = Messenger.MyContacts; var e = new Enumerator(Contacts); for(; !e.atEnd(); e.moveNext()) { var Contact = e.item();...
Samo502Scripting10-01-2009 at 05:37 PM
RE: Script Always Stopped
Indeed it is, I based a script to send a custom announcement to my friends as they come online, now to learn XML and how to implement it.... (I'll spend some time with MsgPlus script before doing it though)
Samo502Scripting09-03-2009 at 05:34 PM
RE: Script Always Stopped
That does make a bit more sense because the thought did come to mind as to how it detects which window to send to, as for it being stopped I don't know. However I did get it running shortly after posting as I forgot to mention.
Samo502Scripting09-03-2009 at 04:54 PM
RE: Script Always Stopped
[code=js]var ChatWnd = Messenger.OpenChat ( 'johndoe@hotmail.com');[/code] Coming from someone who knows a few different programming languages, I have never seen an object declared that way, or anything for that matter. I've only seen that method...
Samo502Scripting09-03-2009 at 04:12 PM
RE: Script Always Stopped
Other scripts work fine, and how is ChatWnd not defined its in the MsgPlus scripting documentation with a list of commands under it?
Samo502Scripting09-03-2009 at 03:50 PM
Script Always Stopped
No matter what i do to a(seemingly) simple script i'm trying as my first script it never runs! I've changed it based on every syntax error I can think of but it still won't run. [code]function OnEvent_MyPsmChange(NewPsm) { var psm = Messenger.MyP...
Samo502Scripting09-03-2009 at 03:34 PM
[Hide Excerpts]