Search Results |
Subject |
Author |
Forum |
Time |
RE: [Reqest] Script that says heyy to whoever signs on
| Spunky | Scripting | 04-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) ... | Baggins | Scripting | 04-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... | pollolibredegrasa | Scripting | 04-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... | matty | Scripting | 04-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... | matty | Forum & Website | 04-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 ... | matty | Scripting | 04-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... | Matti | Scripting | 04-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... | whiz | Scripting | 04-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, ... | Mnjul | Scripting | 04-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... | matty | Scripting | 04-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... | matty | Scripting | 04-27-2009 at 05:08 PM |
RE: My windows are not working shuttup, I don't read :) | Baggins | Scripting | 04-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... | matty | Scripting | 04-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... | Jesus | Scripting | 04-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><... | Jarrod | Tech Talk | 04-23-2009 at 11:36 AM |
RE: MySQL + Checkboxes Thats what im after, thanks ;) | Eddie | Tech Talk | 04-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] | Mnjul | Tech Talk | 04-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... | Jarrod | Tech Talk | 04-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 | biestieboy | Scripting | 04-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... | blessedguy | Skype & Live Messenger | 04-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... | MeEtc | Scripting | 04-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, ... | roflmao456 | Scripting | 04-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 faith | Skinning | 04-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... | ryxdp | Skinning | 04-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... | davidpolitis | Scripting | 04-17-2009 at 12:24 AM |