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

Search Results
Subject Author Forum Time
RE: How do I save data?????
[size=1]Because the [url=http://www.msgplus.net/Downloads/Download-Det ails/DocumentID/7638/]Messenger Plus! Scripting documentation[/url] help file (or the [url=http://www.msgplus.net/Developers/Documentati on/Official-Scripting-Documentation]online d...
CookieRevisedScripting07-02-2011 at 10:43 PM
RE: How do I save data?????
The best analogue I can think of to learn from would be a win32 read/write example. Some things need to be changed though still such as ActiveXObject instead of create object and no constants are defined so you have to explicitly assign these values....
SpunkyScripting07-02-2011 at 06:51 PM
RE: C# anyone?
Interesting. Actually, since it's the first time I'm using an object-oriented language (I've "used" Python once, but I don't think that counts), this things of classes, methods, events, they are still a bit messed in my head. I'm not really wo...
ChancerTech Talk06-28-2011 at 07:18 PM
[?] MediaMonkey scripting ActiveXObject...
I've recently switched from iTunes to MediaMonkey, after iTunes kept crashing and refusing to close and stuff. Seems MediaMonkey also has a scripting system, so I thought I'd experiment with it a bit. Unfortunately, I can't get any further than t...
whizScripting06-27-2011 at 06:50 PM
RE: Detect receiving sound on ChatWndReceiveMessage
Do not use such code. It will trigger an infinate loop if it wasn't for the build-in flood checker! If you want to output the message to check it, you should use the debug window:[code=js]function OnEvent_ChatWndReceiveMessage(ChatWnd,Origin,Messa ge...
CookieRevisedScripting06-26-2011 at 01:34 PM
RE: Detect receiving sound on ChatWndReceiveMessage
Not working. I tried this. [code=js]function OnEvent_ChatWndReceiveMessage(ChatWnd,Origin,Messa ge,MessageKind) { ChatWnd.SendMessage(MsgPlus.RemoveFormatCodes(Mes sage)); }[/code] Nothing happens when I send /swoow or another sound. I think its becau...
AlfredaoScripting06-26-2011 at 10:46 AM
RE: Detect receiving sound on ChatWndReceiveMessage
Not to sure but is the Wooooow in a certain colour? try: [code=js] function OnEvent_ChatWndReceiveMessage(ChatWnd,Origin,Messa ge,MessageKind) { if(Origin != Messenger.MyName) { if(MsgPlus.RemoveFormatCodes(Message.toLower().sea rch...
SpunkyScripting06-26-2011 at 09:29 AM
Detect receiving sound on ChatWndReceiveMessage
Hello, I never did a script for MsgPlus. I have a friend who always send-me a "Wooooow!" sound (/swoow), and when he sends I answer with an "af", but doens't matter. What I'm trying to do is, when i receive a Wooow, automatically asnwer with an...
AlfredaoScripting06-26-2011 at 07:09 AM
RE: [?] navigator.appVersion with BrowserControl
Thread-bump: I think I should let y'all know that I've found an alternative: [code=JScript]/* This is code executed by Plus! */ var document = WndInternet.Browser_GetInterface("BrowserCtrl"). document; var window = document.parentWindow; // This i...
SmokingCookieScripting06-25-2011 at 03:35 PM
C# anyone?
I'm starting to learn C# (by my own, so far, with a teacher soon). I'd like to create a linked list able to store 2 variables. I'm working with TCP connections, and one of these variables is obviously the client socket, which is the only one I'm ...
ChancerTech Talk06-25-2011 at 01:32 AM
RE: PSM change by script still not working properly
Wouldn't have thought so. Only if the PSM element in the contact list has been moved out of it's containers. Try without a skin to find out; I'm going to test it on the OnChatWndReceived_Event [hr] EDIT: [code=js] function OnEvent_ChatWndReceiveM...
SpunkyScripting06-17-2011 at 02:01 PM
RE: PSM change by script still not working properly
it is my own private script, it's being called from: [code=js] function OnEvent_ChatWndReceiveMessage(ChatWnd,Origin,Messa ge,MessageKind){ if(Message.charAt(0) == "!"){ parseCommands(Message,ChatWnd,Origin); //(..) case'link': setL...
foalyScripting06-17-2011 at 12:29 PM
[?] XMLDom loading files with <?xml ?> data...
[size=1]Note: this question relates to using the XMLDom ActiveXObject with an HTML Application, although this effect also occurs with standalone JScript, and I assume with Plus! scripting as well.[/size] I'm trying to load an XML file that looks som...
whizTech Talk06-13-2011 at 10:33 AM
[SOFT 712] Setting Messenger.MyPersonalMessage
Setting Messenger.MyPersonalMessage within a Messenger Plus! script does not work correctly. Here is a test script: [code=jscript]function OnEvent_Initialize(MessengerStart) { Messenger.MyPersonalMessage = "abcdefghijklmnopqrstuvwxyz0123456789"; ...
mynetx06-10-2011 at 10:48 AM
RE: [?] Toggle display of PlusWnd taskbar button...
Yeah, I got it now. :) [code=js]// ... TopToggle: function(PlusWnd) { Interop.Call("user32", "SetWindowPos", PlusWnd.Handle, PlusWnd.Button_IsChecked("ChkTop") ? -1 : -2, 0, 0, 0, 0, 3); Interop.Call("user32", "ShowWindow", PlusWnd.Handl...
whizScripting06-08-2011 at 07:44 PM
RE: [?] Toggle display of PlusWnd taskbar button...
One correction for Cookie: to do a bitwise NOT operation, you need to use "~" as opposed to "!", as in: [code=js]Get = Get & ~0x40000;[/code] The boolean not will not give the wanted results: [list] [*][font=monospace]!0x40000[/font]: A non-zero ...
MattiScripting06-07-2011 at 01:21 PM
RE: [?] Toggle display of PlusWnd taskbar button...
'W' stands for Wide character version, 'A' for ansi version. The difference is in how they handle strings (note that this can be an internal thing though, like with the GetWindowLong API; it doesn't nessecairly mean the API needs string paramete...
CookieRevisedScripting06-07-2011 at 10:24 AM
[?] Toggle display of PlusWnd taskbar button...
[code=js]TopToggle = function(PlusWnd) { Interop.Call("user32", "SetWindowPos", PlusWnd.Handle, PlusWnd.Button_IsChecked("ChkTop") ? -1 : -2, 0, 0, 0, 0, 3); Interop.Call("user32", "ShowWindow", PlusWnd.Handle, 0); // hide window >>> var ...
whizScripting06-05-2011 at 04:35 PM
RE: Making "Commands".
As whiz said, you need to handle the command parsing yourself using an OnEvent_ChatWndSendMessage handler. In its simplest form, that would look like this: [code=js]function OnEvent_ChatWndSendMessage(ChatWnd, Message) { if(Message.indexOf("/myc...
MattiScripting06-03-2011 at 06:21 PM
RE: PlusService.exe (and "Plus World")
PlusService.exe appears to check if Plus! has been removed and then informs the user that it happened without their knowledge and redownloads Plus! for installation. [img]http://shoutbox.menthix.net/attachment.php?pi d=1014450[/img] [code=xml]<?xml ve...
mattyWLM Plus! Help06-02-2011 at 07:14 PM
[?] navigator.appVersion with BrowserControl
Well, I've done some experimenting with the browser control lately, and I've figured out that it uses IE 7.0. However, I've got IE 9.0 installed. I've used the following statement in a BrowserControl and in IE 9: [code=javascript]javascript:alert...
SmokingCookieScripting05-28-2011 at 03:57 PM
RE: Button_SetCheckState
Yes it does,.. Thanks! I could have sworn I tried that in my original code too (I even mention it in my opening post...) Now I feel like an idiot :(
enoidScripting05-27-2011 at 08:33 AM
RE: Button_SetCheckState
Changing it to use VARIANT_BOOL seems to work fine for me. [code=c++]pPlusWnd->Button_SetCheckState("ChkTest ", VARIANT_TRUE); [/code]
EljayScripting05-27-2011 at 08:06 AM
Button_SetCheckState
I'm having a problem with the rewriting of my script. I'm trying to implement as much as possible into my DLL and so far everything works without a problem. There's only one thing that doesn't seem to work, period. I'm talking about Button_SetCh...
enoidScripting05-26-2011 at 11:28 PM
RE: [C++] PlusWnd to MsgPlus
This is the simplest way to do it that I could find. [code=js] var TestWnd = MsgPlus.CreateWnd("TestWnd.xml", "TestWnd"); Interop.Call(DllPath, "TestWindow", TestWnd); [/code] [code=c++]void __stdcall TestWindow(IDispatchPtr dispPlusWnd) { _...
EljayScripting05-17-2011 at 04:03 PM
[Hide Excerpts] Pages: (51): « First « 1 2 [ 3 ] 4 5 6 7 » Last »