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

Search Results
Subject Author Forum Time
RE: [Help] Enumerating XML nodes...
You could use some recursion for that. :P The following code should enumerate all windows [i]and[/i] all controls in those windows [i]and[/i] all the children in those controls. Accessing such an element could then be done like this: [code=js]var Win...
MattiScripting11-17-2009 at 06:42 PM
RE: Comment/uncomment short cut
Hey, Notepad++ is open source, let's just steal it altogether! :P [/sarcasm] Seriously, I don't know. I don't actually use the Script Editor since external programs provide are much more feature-rich and flexible. I prefer a full-blown standalone ...
Matti11-15-2009 at 07:44 PM
RE: can't convert to .plsc?? help needed
You [i]can[/i] use WinRAR to do this, but then you have to set the Archive Type to ZIP. [img]http://shoutbox.menthix.net/attachment.php?pi d=979580[/img] However the easiest and fastest way is still to simply create a ZIP file using Windows Explorer ...
MattiScripting11-11-2009 at 10:34 AM
RE: HELP - Selecting XML nodes...
The type mismatch is because you're trying to send an Element object as parameter to Debug.Trace, and the scripting engine doesn't know how to convert that object to a string. [size=1](It would work if the object had a toString() method defined, bu...
MattiScripting11-01-2009 at 09:06 PM
RE: randome phrase reply script provlem
It appears you're counting is wrong. You're retrieving the first 8 characters from Message and then you compare that to "apply" which is only 5 characters in length. Same happens for your "applyver" check. [code=js]function OnEvent_ChatWndRecei...
MattiScripting11-01-2009 at 10:25 AM
RE: New Elite Members
Wowowow... wait, me?! :O Awesome! :D /me coughs, looks for the little paper with his speech on it... I'd like to thank everybody here on the forums for the great support and making this place always fun to visit. In the past years, I've learned a l...
MattiAnnouncements & News10-27-2009 at 05:27 PM
RE: [?] Detecting when a Plus! Window is closed
Well, there [i]is[/i] a way to create a new event handler function in run-time, but it's really nasty coding. I've been experimenting with this some time ago, but it's just plain ugly. Nevertheless, if it can help you or others, here it is: [code=...
MattiScripting10-17-2009 at 08:55 AM
RE: [?] Detecting when a Plus! Window is closed
Well, the easiest thing would be to create all possible Destroyed events and those can then check whether they have been created by that main window and then do something. Here's an idea:[code=js]// Stores the created window var oCreatedWnd; // Arra...
MattiScripting10-16-2009 at 03:33 PM
RE: [?] Detecting when a Plus! Window is closed
It seems that matty copied that code snippet from Screenshot Sender. The line with _debug can simply be removed, and the _win32 can be replaced by Interop.Call. However the code could still use some optimization. There's no need for a for-loop to ch...
MattiScripting10-14-2009 at 12:08 PM
RE: HELP - CreatePopupMenu sub-menus?
You create a submenu with CreatePopupMenu, add items to it and then pass the handle to AppendMenuW to add it to your main menu. However, if you prefer to avoid all this hassle, you can simply go and get the Menu class I made for Countdown Live. The o...
MattiScripting10-08-2009 at 07:36 PM
RE: [Release] SendTo v2.2 [Final]
Perhaps if we had access the source code of the DLL, we could help you debugging. :)
MattiScripting10-07-2009 at 03:02 PM
RE: [REQ/HELP] Display Picture as Window Icon
I'd say: if anyone wanted to build a full-blown script for this with a nice GUI and all kinds of settings and tweaks, then go for it. :)
MattiScripting10-06-2009 at 02:55 PM
RE: [REQ/HELP] Display Picture as Window Icon
That doesn't work since GdipCreateHICONFromBitmap requires Bitmap to be a GDI+ Bitmap and not a HBITMAP. However, I managed to get this working by using the code in [url=http://shoutbox.menthix.net/showthread.php?ti d=92466&pid=976492#pid976492]matty...
MattiScripting10-05-2009 at 05:26 PM
RE: Format Codes and Interface Windows
[list=1] [*]Unfortunately, there is no such control. Perhaps you could style the items or subitems in a ListViewControl using some sort of Win32 API message, but there's no native way to do this in Plus! itself. [*]Actually, the Rich Edit Control do...
MattiScripting10-04-2009 at 03:28 PM
RE: [Release] Countdown Live (Latest: 2.2.021)
Thanks ryden, but unfortunately I have to dismiss that translation since it contains a lot of untranslated strings and errors. I hope you understand that in order to maintain the quality of the script, I cannot accept such translations. I sent you a ...
MattiScripting10-03-2009 at 03:19 PM
RE: [REQ] Name Remote
My guess would be that Messenger.MyName doesn't like to be set null when a normal message is received. The regular expression could use some improvement as well. [size=1](use of ^ and $ is recommended and * followed by + is completely unnecessary)[/...
MattiScripting10-02-2009 at 04:38 PM
RE: [Release] Countdown Live (Latest: 2.2.021)
Thanks for reporting this problem. I had a look at it myself and I was able to reproduce it by following very precise steps: [list=1] [*]Open the Preferences window. [*]Without resizing the window, select the (previous to) last tab which requires the...
MattiScripting09-30-2009 at 11:56 AM
RE: Encrypting, decrypting etc. of Plus! chatlogs
Think about this: if it were possible to decrypt the log files without knowing the password, why would anyone want to use that kind of encryption? Isn't that the whole point of encrypting files? If you no longer know it, you're out of luck. The on...
MattiWLM Plus! Help09-28-2009 at 04:16 PM
RE: [Release] Countdown Live (Latest: 2.2.021)
Of course you can, I always appreciate volunteering translators! Head over to the [url=http://matti.buelens.com/cdl/index.php?p=tran slate]translation page[/url] at the project website to get everything you need to translate the script. If you have q...
MattiScripting09-25-2009 at 02:52 PM
RE: Timeout Objects
Well, actually there's no need to add so many arguments. You could simply make another function which passes the right parameters and use that as callback, like so: [code=js]function somefunction(arg1, arg2, arg3) { // Do something useful } // Meth...
MattiScripting09-20-2009 at 05:47 PM
RE: Timeout Objects
If you really want setTimeout functionality, you could try this class I made for my scripts. You have to note though that you can't use "normal" MsgPlus.AddTimer() calls unless you edit the OnEvent_Timer in this class. Example usage: [code=js]func...
MattiScripting09-20-2009 at 06:54 AM
RE: MsgPlus.ScriptRegPath| Problem :(
Ahaha, that's a typo. :D Try [b]STATUS_INVISIBLE[/b] instead: [code=js]function OnEvent_Initialize ( ) { if ( Messenger.MyStatus < STATUS_INVISIBLE ) return false; // etc...[/code]
MattiScripting09-18-2009 at 03:34 PM
RE: PSM Updater
Did you try to do a [url=http://www.msgpluslive.net/scripts/search/?q= online]search in the scripting database[/url]? There are a lot of scripts which can display your online time / time on computer, just go and have a look!
MattiScripting09-16-2009 at 04:30 PM
RE: HELP - Resizing a child window!
Fixed it! [list] [*]OnWndCommandBar_ShellEvent_MessageNotification always has to return something. Because we want all messages to be processed normally, we always return -1. [*]You defined the element in your XML as "PhlChild" but you're referenc...
MattiScripting09-14-2009 at 05:20 PM
RE: [REQ] A dice roller that will let my contacts roll the dice
A quick search in the official scripts database found this [url=http://www.msgpluslive.net/scripts/view/306-A dvanced-Dice-Roller/]Advanced Dice Roller[/url] script. I don't know whether you can change the output message, but it appears to do the job...
MattiScripting09-14-2009 at 03:41 PM
[Hide Excerpts] Pages: (66): « First « 4 5 6 7 [ 8 ] 9 10 11 12 » Last »