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

Search Results
Subject Author Forum Time
RE: [solved] CreateThread/GetCallbackPtr issues
I could be wrong, but my understanding about knowing if a function was called with the right number of arguments or not, is checking for a stack imbalance after the call, hence why the plus documentation says to only call functions with stdcall conve...
PineconeScripting12-26-2008 at 10:15 AM
RE: Calculator to friends
Maybe we can help explain where you've gone wrong if you post your changed code.
PineconeScripting12-23-2008 at 05:26 PM
RE: Computer Details script
I think that a switch statement would not be the best for someone who is just learning JScript as he will probably want multiple commands of variable length, which will make a switch statement difficult to manage. Try this: [code] function OnEvent_Ch...
PineconeScripting12-23-2008 at 03:34 PM
RE: Block Un-Wished Logins
You can however hook into messenger and stop them just clicking the add contact button or whatever. I almost got it working, but for some reason it freezes the messenger main window after. I sent it to a friend of mine for testing and he didn't have...
PineconeScripting12-23-2008 at 02:10 PM
RE: [Request] Titlebar of App -> PSM
Is this what you wanted? It shows the name of the executable file that created the window that's currently in the foregound, however disallows showing all processes listed in the array named "Exclude". Edit: Sorry, i didn't read the first post. T...
PineconeScripting12-22-2008 at 07:24 AM
RE: Clone + auto responder
For changing your name to your contact's name, you can use this script: http://www.msgplus.net/scripts/view/72-USay/ And the following (untested) script should use the usay script (link above) to change your name and re-send their message. It prefix...
PineconeScripting12-22-2008 at 06:56 AM
RE: Interop.Call("user32.dll","GetActiveWindow") returns 0
No problem. Thanks for pointing out the spelling error (corrected now). Your previous attempts will have returned the wrong number if you were trying to use the return value of GetWindowThreadProcessId as it returns a handle to the thread that create...
PineconeScripting12-22-2008 at 06:31 AM
RE: Interop.Call("user32.dll","GetActiveWindow") returns 0
Untested... I think will work as is. GetWindowThreadProcessId was the function you were looking for. http://msdn.microsoft.com/en-us/library/ms633522.a spx [code]var D = Interop.Allocate(4); var hWnd = Interop.Call('User32.dll', 'GetForegroundWindo...
PineconeScripting12-22-2008 at 04:12 AM
RE: Calculator to friends
The following is untested. Should work with a few tweaks i think. Ascii range 40 - 57 contains the following characters: ()*+,-./0123456789 [code] function OnEvent_ChatWndRecieveMessage(ChatWnd, Message) { if (Message.substring(0,6).toLowerCase() !=...
PineconeScripting12-21-2008 at 11:14 AM
[Hide Excerpts]