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

Search Results
Subject Author Forum Time
RE: [REQUEST] Make text in convo window bigger than defualt sizes
No I don't have an answer for them =/ But You can also do some other weird stuff Ctrl+1 - Single Spacing on current line Ctrl+2 - Double Spacing on current line Ctrl+5 - 1.5 Spacing on current line Ctrl+R - Right-align current line Ctrl+L - Left-ali...
SilentdragonScripting08-15-2006 at 09:44 AM
RE: [REQUEST] Make text in convo window bigger than defualt sizes
Click on the message area and hold Ctrl and scroll up on your mouse.
SilentdragonScripting08-15-2006 at 01:46 AM
RE: [Release] Answer Machine Plus v2.72(09/20/08)
It'll match Hi at any part of the message, so I might expand the options with even more conditions. Like Fragment of first word, last word, or anyword. Multiple searches will be expanded so you can do things when a certain thing is matched so many ...
SilentdragonScripting08-15-2006 at 12:14 AM
RE: [REL]AutoTalker 2.0 (Now with 28 Talkers)
Version 2.0 is out. Now with Javascript support. Enjoy!
SilentdragonScripting08-13-2006 at 07:03 AM
RE: How Do I Make A Valid Script??
Hmm, that's a bit strange you thank him for my solution. Would make more sense to thank us both as we both put together solved the issue.
SilentdragonScripting08-12-2006 at 09:33 PM
RE: How Do I Make A Valid Script??
mitz - Your plsc files are saved as rars. Make sure you do a zip.
SilentdragonScripting08-12-2006 at 09:16 PM
RE: Need some help.
1. SendMessage only accepts one parameter eg ChatWnd.SendMessage(h); or ChatWnd.SendMessage("Stuff"+h); 2. var h = hey; is wrong var h = "hey"; is right. Strings need to be in quotes 3. OnEvent_ChatWndReceiveMessage(ChatWnd,Origin,Messa ge,Type) 4...
SilentdragonScripting08-12-2006 at 08:32 AM
RE: [REQUEST]Idle lies
Scripting doesn't let you set your status to idle. So you'd have to write some work around in order to do it.
SilentdragonScripting08-11-2006 at 10:37 AM
RE: AddTimer makes msn crash
Yes, it converts automatically. Although adding strings to integers and such is somewhat weird, but its understandable. The bottom has more info. http://pages-perso.esil.univ-mrs.fr/~tourai/JavaSc ript/ms/5.htm
SilentdragonScripting08-10-2006 at 07:51 AM
RE: AddTimer makes msn crash
If you read your code you'd understand that because you don't do that, it causes your whole code to fail. Also doing that won't make the command show, as it returns the message if it is counting. [code]var counter = 6; var curWnd; function OnEven...
SilentdragonScripting08-10-2006 at 03:17 AM
RE: AddTimer makes msn crash
1. Jscript automatically converts between types. 2. Stuff: [code]if(counting) { return ""; }[/code] That returns nothing making your script not work. Return msg. [code]MsgPlus.AddTimer("commandCountDown", 1000);[/code] One second timer. [code]els...
SilentdragonScripting08-10-2006 at 12:36 AM
RE: instantiate plus! scripting objects from outside?
[code]/* File modification dates registry */ var FileModificationDates = []; /** * Listen for file modification * * @param string FilePath the file to observe * @param function Callback function to call when the file is modified * @return boole...
SilentdragonScripting08-08-2006 at 11:18 PM
RE: ChatWnd objects
[code]Debug.Trace("Currently opened chat windows:"); var Windows = Messenger.CurrentChats; var e = new Enumerator(Windows); for(; !e.atEnd(); e.moveNext()) { var ChatWindow = e.item(); Debug.Trace(" Handle: " + ChatWindow.Handle); }[/code] Stra...
SilentdragonScripting08-07-2006 at 10:43 PM
RE: [REQUEST] remember previous nicknames
Saves nick on name change. In the Plus! Script Menu you can open the history window, from which you can just double click an item to change your nick to that one.
SilentdragonScripting08-07-2006 at 09:03 AM
RE: [request]Mobile phone number "addon"
http://shoutbox.menthix.net/showthread.php?tid=645 34 Should be able to do that among other things.
SilentdragonScripting08-06-2006 at 08:49 AM
[Release] Answer Machine Plus v2.72(09/20/08)
Description: Configurable interface which allows you to setup messages to autoreply to, or execute / Plus! commands. Messages can be set to work only for you, your contact, or both. There are also several types of options for matching. Fragments(Word...
SilentdragonScripting08-06-2006 at 07:00 AM
RE: help!!! XML
[code]Sec1 = xml.selectSingleNode("/Min/name");[/code] I'm pretty sure you want /Sec/name [code]<Sec> <name>0</name> </Seg>[/code] I spy a spelling error [code]<Hrs> <name>0</name> </Hsr>[/code] And another And Lastly if I recall xml files are onl...
SilentdragonScripting08-01-2006 at 08:20 AM
RE: Selective Talker
Yes you can...there is a ChatWnds object.
SilentdragonScripting07-30-2006 at 11:11 PM
RE: [REL]AutoTalker 2.0 (Now with 28 Talkers)
First off new version does some minor things but eh. -1.1 --Fixed bug where if you had debugging options on it would load the debugger window --Added a # in front of the current talker in the list Second. The s=z thing doesn't make much sense. If th...
SilentdragonScripting07-27-2006 at 05:19 PM
[REL]AutoTalker 2.0 (Now with 28 Talkers)
Applies an autotalker to your chat and optionally your PSM. For those who don't know what that means, it changes your text based on a pattern found in a file. Credits to Original Authors Most are adaptions of stuffplug versions. Included talkers are...
SilentdragonScripting07-27-2006 at 10:22 AM
RE: [Request] "What i'm listening to" Enabled/disabled
Is it really that hard to click it?
SilentdragonScripting07-27-2006 at 09:06 AM
RE: Help!!! I want to make windows
Just plain Unicode should do it for you.
SilentdragonScripting07-26-2006 at 06:38 PM
RE: [REQUEST] New Inactive Icon / Change contact's nickname
[code]function OnEvent_ContactStatusChange(Email,NewStatus) { if(NewStatus == 6) { var contact = Contacts.GetContact(Email); MsgPlus.DisplayToastContact("Idle Alert",contact.Name,"Has gone idle."); ...
SilentdragonScripting07-23-2006 at 06:49 AM
RE: Two questions[Edit: Three, check page 2]
for(var i = 0; i < LIST.length; i++) would be better allows easier managing of changing array sizes.
SilentdragonScripting07-23-2006 at 03:18 AM
RE: Two questions[Edit: Three, check page 2]
For the xml question go look at the status2ftp script for ftp functions. As for arrays, you're comparing a string to an entire array, of course it won't work. Create a loop to run through the entire array. But in your example if(Message.match(/Duja...
SilentdragonScripting07-23-2006 at 02:51 AM
[Hide Excerpts] Pages: (6): « First « 1 2 3 [ 4 ] 5 6 » Last »