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

Search Results
Subject Author Forum Time
RE: regexp problem
I think you might have a few issues with those expressions. You need to escape literal "." characters (/./ matches any character). Also, the ? after "www" only makes the third "w" optional (i.e. it will match "ww" or "www", which I'm ass...
whizScripting09-21-2012 at 09:34 AM
RE: GlobalMemoryStatusEx function???
[code=js]/* typedef struct _MEMORYSTATUSEX { DWORD dwLength; 0 DWORD dwMemoryLoad; 4 DWORDLONG ullTotalPhys; 8 DWORDLONG ullAvailPhys; 16 DWORDLONG ullTotalPageFile; 24 DWORDLONG ullAvailPageFile; 32 ...
mattyScripting09-14-2012 at 12:13 PM
RE: GlobalMemoryStatusEx function???
MEMORYSTATUSEX isn't a String, it's a structure. The documentation for it can be found [url=http://msdn.microsoft.com/en-us/library/windo ws/desktop/aa366770(v=vs.85).aspx]here[/url] You will need to use Data Blocs to emulate the structure and then ...
SpunkyScripting09-14-2012 at 07:39 AM
RE: sending a message to all my contacts
like this ? [code=js]var oContacts = []; var Message = 'Salut Salut !, je suis en cours de migration sur gregreg94@live.fr , tu es ok pour rajouter cette adresse ? Si tu le fais, fais le moi savoir avec un petit mot stp :) Bises'; function OnEven...
gregrjScripting07-06-2012 at 10:11 PM
RE: sending a message to all my contacts
Yeah I just noticed as I was about to close it. [code=js]var oContacts = []; var Message = 'This is where your message would go.'; function OnEvent_Initialize() { OnEvent_SigninReady(); } function OnEvent_SigninReady() { if (Messenger.M...
mattyScripting07-05-2012 at 03:35 PM
RE: sending a message to all my contacts
For some reason the second last curly bracket ended up on the same line as the comment above it. I have removed all comments so the board doesn't screw anything up in the code. [code=js]var oContacts = []; var Message = 'This is where your message ...
mattyScripting07-05-2012 at 03:26 PM
RE: sending a message to all my contacts
[code=js]var oContacts = []; var Message = 'This is where your message would go.'; function OnEvent_Initialize() { OnEvent_SigninReady(); } function OnEvent_SigninReady() { if (Messenger.MyStatus < STATUS_INVISIBLE) return false; ...
mattyScripting07-05-2012 at 12:42 PM
RE: sending a message to all my contacts
Without testing... [code=js]var oContacts = []; var Message = 'This is where your message would go.'; function OnEvent_Initialize() { OnEvent_SigninReady(); } function OnEvent_SigninReady() { if (Messenger.MyStatus < STATUS_INVISIBLE) return fals...
mattyScripting07-04-2012 at 02:19 PM
RE: Ignore Script.. anyone please?
Could iterate the contacts in the chat window and do it by email that way. Names are (were) likely to change often making it unreliable. I could see this being more annoying though as every message will play the new message sound. A better option ma...
SpunkyScripting05-27-2012 at 09:02 AM
RE: Ignore Script.. anyone please?
[code=js]function OnEvent_ChatWndReceiveMessage(pChatWnd, sOrigin, sMessage, nMessageKind) { if (sOrigin === "<name of person to block>") { pChatWnd.SendMessage("/close"); } }[/code] This will close the conversation window whe...
whizScripting05-27-2012 at 08:32 AM
RE: Script idea [Caps killer]
[code=js]function OnEvent_ChatWndReceiveMessage(pChatWnd, sOrigin, sMessage, nMessageKind) { return sMessage.toLowerCase(); }[/code]
mattyScripting04-06-2012 at 01:44 AM
RE: What is with the ugly footer?!?
mattyForum & Website04-04-2012 at 12:24 PM
RE: ShowWindow does not work in Windows 7
Ok then it is a limitation of tabbed chats. However... you could try and mimic the menu press to undock the window and then hide it. That is really your only option in this scenario I do believe.
mattyScripting12-19-2011 at 03:48 PM
RE: ShowWindow does not work in Windows 7
the window is stuck and will not display anything, it's just the mold and does not disappear
RicardO.sysScripting12-19-2011 at 03:46 PM
RE: ShowWindow does not work in Windows 7
Try something along these lines since you are using tabbed chats. [code=js]var SW_HIDE = 0; var GA_PARENT = 1; function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MsgKind) { Interop.Call('user32', 'ShowWindow', Interop.Call('use...
mattyScripting12-19-2011 at 03:36 PM
RE: ShowWindow does not work in Windows 7
[code=js]function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MsgKind) { Interop.Call("User32.dll", "ShowWindow", ChatWnd.Handle, 0); }[/code] I've tried a few variations and nothing. the window gets to hang for a few 10s, but afte...
RicardO.sysScripting12-19-2011 at 03:31 PM
RE: ShowWindow does not work in Windows 7
Post the full code and let me have a look at it. ShowWindow does work in Windows 7 and there isn't a security policy that will affect the function of an API. When you post the code use the following tags: [noparse][code=js][/code][/noparse]
mattyScripting12-19-2011 at 03:12 PM
RE: Messenger Plus! Skins For Facebook
Line 37 is: [code=js] ._inject( "css" , "https://phpws.msgplus.net/generic.css" , 0 );[/code] but l suspect it includes lines 35 & 36 as a single expression
Spunky12-13-2011 at 07:12 PM
RE: Send mail when contact logs in
This would work but would require you to have a GMail account. [code=js]function OnEvent_ContactSignin(strEmail) { if (strEmail === 'mygirlfriend@hotmail.com') SendMail(strEmail, 'Online'); } function SendMail(strEmail, strStatus) { var strFr...
mattyScripting12-09-2011 at 08:04 PM
RE: Search a words in personal message.
Sorry for the delayed reply. [code=js]/* Usage: var a = FindInPsm('test'); for (var i in a) Debug.Trace(a[i].Email); */ function FindInPsm(sTextToFind) { var oContainer = []; for (var oContact = new Enumerator(Messenger.MyContacts); !oCont...
mattyScripting12-09-2011 at 07:48 PM
RE: anti flood to my script
Taking it one step further, making it work on a per contact basis... [code=js]var oContacts = {}; function OnEvent_ChatWndReceiveMessage(ChatWnd, Message, Origin, MsgKind) { if (Message === "-comandtest" && (oContacts[Origin].AllowCmd || type...
mattyScripting11-26-2011 at 12:25 PM
RE: anti flood to my script
For the timing cool down, you could set a variable to false when the command is used, and use MsgPlus::AddTimer() to set a delay for changing it back to true. Then, only allow sending the text if the variable is true. [code=js]var AllowCmd = true; f...
whizScripting11-25-2011 at 10:37 PM
RE: Play sound effect upon program launch.
PS: Another method you can use, for any program you want, is to make a small batch file/Windows script which you need to run instead of the program itself:[code=VBScript]sSoundFile = "C:\directory\sound.mp3" sProgramFile = "C:\Program Files\Wi...
CookieRevisedWLM Plus! Help11-14-2011 at 03:07 PM
RE: Play sound effect upon program launch.
This script will play a sound when Messenger starts: [code=js]var sSoundFile = "C:\\directory\\sound.mp3"; function OnEvent_Initialize(bMessengerStart) { if (bMessengerStart) { MsgPlus.PlaySound("\\" + sSoundFile); } }[/code] - Open the...
CookieRevisedWLM Plus! Help11-14-2011 at 01:05 PM
RE: [?] FigureElement with BaseColor and Alpha
Even if I do that, I still can't use BaseColor and Alpha together, right? :S This is what I've got at the moment... [code=xml]<Element xsi:type="FigureElement" Id="FgrTestB"> <Position Left="113" Top="-4" Width="500" Height="60"> <U...
whizScripting10-29-2011 at 09:23 PM
[Hide Excerpts] Pages: (51): « First [ 1 ] 2 3 4 5 » Last »