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

Search Results
Subject Author Forum Time
RE: can somebody code a simple script for me?
Not sure if this fixes the problem or not but have a go at it. [code=js]// Declare our custom Contacts object var oContacts = {} ; // Declare the message to send var sMessage = 'This is the message to be sent' ; function OnEvent_ChatWndSendMessag...
mattyScripting10-28-2009 at 02:51 PM
RE: [Released]My Live Messenger
Yes, by editing the editing the resource files. [code=xml]} ToastMessage { >>> Foreground:rgb(51,51,51); <<< Accessible:true; AccRole:42; AccState:0x40;[/code] In style 921 probably (C:\Program Files\Messenger Plus! Live\Skins\My Live Messeng...
blessedguySkinning10-27-2009 at 10:54 PM
RE: can somebody code a simple script for me?
Untested [code=js]var oContacts = {}; var sMessage = 'This is the message to be sent'; function OnEvent_ChatWndSendMessage ( pChatWnd , sMessage ) { if ( sMessage.match ( /\/sendall/i ) ) { for ( var oContact = new Enumerator ( Messenger.MyCont...
mattyScripting10-27-2009 at 07:22 PM
[PHP] Getting the online status of a computer [SOLVED]
Well, I've Googled how to do this a bit and found no efficient way to do it. What I would like is something that pings a computer on the local network using a predefined address/name etc., and if it can be reached, return "foobar". It'll be runni...
ryxdpTech Talk10-23-2009 at 09:34 AM
RE: help customize ComboBoxControl
I'm too interested in this subject, and the documentation does not explain very well how to do this and many other... "not there are clear examples" for example in the documentation says that you can put pictures in the ComboBoxControl. but, I d...
insiderSkinning10-20-2009 at 12:53 AM
RE: About Detect User status
[code=js]function OnEvent_ChatWndSendMessage ( oChatWnd , sMessage ) { if ( oChatWnd.Contacts.Count !== 1 ) return sMessage; // Don't bother doing anything if there is more than one contact in the conversation // Get the contact object var oCon...
mattyScripting10-19-2009 at 03:44 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: help me please
is very little information, the which samples... but I think this is the solution... add in the code of "SkinInfo.xml" of the Image this [code=xml]<Picture Id="4300"> <File>Images/4300.png</File> <Metadata> <Colorize>false</Colorize> <UMLeft>1...
insiderSkinning10-16-2009 at 09:14 PM
RE: [?] Detecting when a Plus! Window is closed
I think his point is that he does not know the Window IDs at all at the time of writing the code. Aka: the Window IDs can be anything at any point. He only knows the Windows IDs when the combobox is created and populated. So he obvisouly can not hard...
CookieRevisedScripting10-16-2009 at 05:47 PM
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 to be getting a bit too confusing even for me, so I'll make an example :P Say we have a window. This window has, among other things, a button and a combo box. When the button is pressed, it creates another window using a specified XML file...
ryxdpScripting10-14-2009 at 10:46 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: [?] Detecting when a Plus! Window is closed
Store the WindowIds in an object and on Destroy delete them and when you need to check if they are open iterate through the object and see if they exist. [code=js]var objWindows = {}; function OpenWindow(Name, XML, ShowCode){ if (typeof objWindows[N...
mattyScripting10-13-2009 at 01:17 PM
RE: HELP - CreatePopupMenu sub-menus?
That's better - I'll use that. [code=js]var MCOWMnu = Interop.Call("user32", "CreatePopupMenu"); Interop.Call("user32", "AppendMenuW", MCOWMnu, MF_STRING, 0, "Normal"); Interop.Call("user32", "AppendMenuW", MCOWMnu, MF_CHECKED, 0, "C...
whizScripting10-09-2009 at 06:08 PM
RE: Remove Notifications when changing PSM
The ChatWnd::ResetInfoMessage could potentially work. I did think of this however there is a limitation. The limitation is that everyone you chat with needs to have your script to prevent the text from being displayed. Also you would need to do somet...
mattyScripting10-08-2009 at 08:13 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: MySQL - Compare 2 tables
Ah... In that case I never said anything ;)
CookieRevisedTech Talk10-08-2009 at 07:21 PM
HELP - CreatePopupMenu sub-menus?
[code=js]var MF_CHECKED = 0x8; var MF_APPEND = 0x100; var MF_GRAYED = 0x1; var MF_SEPARATOR = 0x800; var MF_STRING = 0x0; // don't need the rest... var MCOWMnu = Interop.Call("user32", "CreatePopupMenu"); Interop.Call("user32", "AppendMenuW"...
whizScripting10-08-2009 at 07:07 PM
RE: Help me please - Script with counter and auto-response
Not exactly what you asked for but I will explain what this does. When your status changes to busy the timer starts. After 20 minutes it will send the first message to all open windows. After 5 minutes the next message is sent. However the second mes...
mattyScripting10-08-2009 at 05:10 PM
RE: MySQL - Compare 2 tables
Oops I screwed up [code=sql]SELECT * FROM upgrades A INNER JOIN upgrades_backup B ON B.steamid = A.steamid WHERE ( A.playerupgrade1 > ( B.playerupgrade1 + 10) OR A.playerupgrade2 > ( B.playerupgrade2 + 10 ) OR A.playerupgrade3 > ( B.playeru...
mattyTech Talk10-08-2009 at 03:02 PM
RE: MySQL - Compare 2 tables
Really crappy way of doing it... not sure if it works but give it a shot. [code=sql]SELECT * FROM upgrades A INNER JOIN upgrades_backup B ON B.steamid = A.steamid WHERE ( A.playerupgrade1 > CAST ( B.playerupgrade1 + 10 AS INT ) OR A.playerupgrade2...
mattyTech Talk10-08-2009 at 02:18 PM
RE: startsWith() and endsWith()
I don't know if this works in Jscript: [code=JScript]function startsWithToken(orig, str) { return new RegExp("^"+str.replace(/[\|\(\)\$\^\*\+\ [\]\?]/,"\$1"),"gi").test(orig); } function endsWithToken(orig, str) { return new ...
jeroneScripting10-08-2009 at 11:40 AM
RE: c# Read text file
What he said but in code ;) [code=c#]String[] lines = File.ReadAllLines("C:\\thepath.txt"); Char thing = lines[lines.Length - 2][lines[lines.Length - 2].Length - 1];[/code]
EzraTech Talk10-07-2009 at 09:35 PM
RE: [Release] SendTo v2.2 [Final]
This isn't a problem in the DLL's source code (which is exact the same as the EXE which does work). This is a problem in how it is compiled as a DLL and how VB6 works internally like calling the correct entrypoint and instancing its internal object...
CookieRevisedScripting10-07-2009 at 07:55 PM
RE: VERY strange...webcam on with pc off
SpunkySkype & Live Messenger10-07-2009 at 06:22 PM
[Hide Excerpts] Pages: (51): « First « 20 21 22 23 [ 24 ] 25 26 27 28 » Last »