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

Search Results
Subject Author Forum Time
RE: [Reqest] Script that says heyy to whoever signs on
SpunkyScripting04-30-2009 at 12:00 PM
RE: [Reqest] Script that says heyy to whoever signs on
In the scripts menu click Scripts Prefrences, then create a new script and paste this code in. If you want to change the message, just change what is in the quotes at the top. [code=js] var sMessage = "Hey!"; function OnEvent_ContactSignin(sEmail) ...
BagginsScripting04-30-2009 at 10:23 AM
RE: WLM status sync type script?
You got the params the wrong way round when creating the window (and missed an e in listener) :P [code=js] MsgPlus.CreateWnd('wListner', 'Window.xml')[/code] should be [code=js] MsgPlus.CreateWnd('Window.xml','wList ener')[/code] You also for...
pollolibredegrasaScripting04-29-2009 at 02:23 PM
RE: Api Send Message
The contact object is only exposed by enumerating the ChatWnd.Contacts property or the Messenger.MyContacts property. [code=js]function OnEvent_ChatWndCreated(oChatWnd) { for (var oContact = new Enumerator(oChatWnd.Contacts); !oContact.atEnd(); o...
mattyScripting04-29-2009 at 01:21 PM
Multiline code highlighting
[code=js]>>>var i=0; ++i; ++i;<<<[/code] Multiline highlighting doesn't work and I can understand why as the code looks for the <<< at the end of the line. DZ can you fix this so that the code would highlight each line? Doing this: [code]>>>var i=0...
mattyForum & Website04-29-2009 at 01:15 PM
RE: Error: unknown (code: -2147418113)
I made a few changes. Those are highlighted. [code=js]var originalPSM; var originalPSM1; var idleSeconds; var isIdle; var isBusy; var PSMnumber; var PSM1number; >>>var PSMtype = 1;<<< var seconds = 15; var allowed = 1; >>>var aPSMArray [<<< >>> 1 ...
mattyScripting04-29-2009 at 01:11 PM
RE: MySQL
Sure! Both PHP and JScript are case-sensitive when it comes to assigning a key to an array or object. This allows you to do things like: [code=php]<?php $test = array( "foo" => "bar", "FoO" => "cookie" ); ?>[/code] and [code=js]var t...
MattiScripting04-29-2009 at 11:06 AM
HELP - No error, no action...
It flips the status, or at least it did until I did something to it that stops it working. [code=js] var Activity = "Disabled"; var Messenger = 14; var Mode = "All Values"; var Refresh = 1000; // will add a method of changing this later var OldS...
whizScripting04-28-2009 at 07:50 PM
RE: Api Send Message
[quote=Mnjul]Just replace the SendMessage with PostMessage in your crash code:p [code=jscript]function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MsgKind){ if(Message=="ok"){ Interop.Call("user32", "PostMessageW", ChatWnd.Handle, ...
MnjulScripting04-28-2009 at 06:14 PM
RE: Api Send Message
[code=js]var oChatWnds = {}; function OnEvent_ChatWndCreated(oChatWnd) { if (oChatWnd.Contacts.Count !== 1) return; for (var oContact = new Enumerator(oChatWnd.Contacts); !oContact.atEnd(); oContact.moveNext()) { if (oContact.item().Blocked === t...
mattyScripting04-28-2009 at 05:26 PM
RE: My windows are not working
Clearly lol. But you are correct it doesn't really make this fact known very well...
mattyScripting04-27-2009 at 05:08 PM
RE: My windows are not working
shuttup, I don't read :)
BagginsScripting04-27-2009 at 03:57 PM
RE: My windows are not working
[code=xml]<?xml version="1.0" encoding="UTF-16"?>[/code] That should tell you right there at the top of the xml window file...
mattyScripting04-27-2009 at 03:33 PM
RE: beginner scripter
You have to define the ChatWnd Object before you can send messages to it. Luckily this object can be provided by the Messenger.OpenChat() function. [code=javascript]function OnEvent_Initialize(MessengerStart) { ChatWnd = Messenger.OpenChat('kassaida...
JesusScripting04-26-2009 at 04:04 PM
RE: cgi generate a zip file
[code=python]import zipfile,os ziped = zipfile.ZipFile('project.zip', 'w') print "Content-Type: text/html" print print """ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Title</title> </head><...
JarrodTech Talk04-23-2009 at 11:36 AM
RE: MySQL + Checkboxes
Thats what im after, thanks ;)
EddieTech Talk04-22-2009 at 11:51 AM
RE: MySQL + Checkboxes
If you're using PHP it should look like: [code=php] <input type="checkbox" <?php if($row['field']==1) echo "checked=\"checked\""; ?> /> [/code]
MnjulTech Talk04-22-2009 at 11:46 AM
RE: Help writing a batch file
IMO python would be a much better solution to this [code=python] ###define function for the processes import win32pdh,os def get_processes(): win32pdh.EnumObjects(None, None, win32pdh.PERF_DETAIL_WIZARD) junk, instances = win32pdh.EnumObjectI...
JarrodTech Talk04-21-2009 at 05:43 AM
RE: [split] Script to use Alt+S to send a message and Enter to get newline
I search for the Key "TAB" & ENTER oder Space
biestieboyScripting04-20-2009 at 11:05 PM
RE: change dp's to right side of contact window on wlm 9 final build 14 also alot more
It's not only because it worked for you it has/will work for everyone. Also, take a look at this example: "Turning off the lights before turning your computer on is the only way to make it work. REALLY! I've tested it, and it really turns on if t...
blessedguySkype & Live Messenger04-20-2009 at 07:17 PM
RE: [Help] What is the best way to read binary file ??
[s]I have a helper script written by Volv that works with binary data. I'll post/attach when I get home. [/s] These should help. [code=JScript]function binReadFile(filePath) { var fstream = new ActiveXObject("ADODB.Stream"); fstream.Type = 1; f...
MeEtcScripting04-19-2009 at 01:41 AM
RE: [Request] Very Simple Responder
I get what you mean. Here is the new code: [code=JScript]var messages = new Array(), i=new Array(); messages[0] = "First Message"; messages[1] = "Second Message"; messages[2] = "Third Message"; function OnEvent_ChatWndReceiveMessage(ChatWnd, ...
roflmao456Scripting04-18-2009 at 07:00 AM
RE: B-day gift help .. skinning msn 2009
I changed the exntension using WinRAR: opened the program.. then pressed 'add' then in archive name i changed .rar to .plsk ..there was an option below to chose from .ZIP or .RAR. I ignored it (although one had to be pressed).. then i checked the...
keep the faithSkinning04-17-2009 at 08:54 PM
RE: B-day gift help .. skinning msn 2009
I've tested the definition, and it doesn't appear to be seeing the PlusSkin tag at the top :S [code]Missing <*PlusSkin/> tag at the beginning. Line (def): 1[/code] and the first line is [code=xml]<*PlusSkin FileKind(def) MsgVer(5) PlusVer(1) */>[/c...
ryxdpSkinning04-17-2009 at 01:54 AM
RE: [Help] Messenger.MyContacts.GetContact
Problems: 1. You're setting the variable "Message", which is already set by OnEvent_ChatWndSendMessage 2. You aren't returning anything at the end of the event 3. Script commands should not start with an uppercase character (although they will s...
davidpolitisScripting04-17-2009 at 12:24 AM
[Hide Excerpts] Pages: (51): « First « 32 33 34 35 [ 36 ] 37 38 39 40 » Last »