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

Search Results
Subject Author Forum Time
[Resource] Font Class (Updated 24/09/07)
[size=5][b]Font Class 1.1[/b][/size] This library gets around [i]Interop.Call[/i]'s 12 parameter limit, allowing you to change the fonts of controls other than [i]ButtonControl[/i]s, [i]RadioControl[/i]s, [i]RichEditControl[/i]s and [i]RichStaticCon...
phalanxiiScripting09-23-2007 at 08:26 AM
RE: [Request] display alexa rank from my site in personal message
Yes, I noticed that with a few other websites, so I've written another script for you which takes the site's Alexa Rank straight off the website.[code]var PSM = "[color=red]Alexa Rank: %alexa%[/color]"; var URL = "[color=red]http://www.gem-flash...
phalanxiiScripting09-23-2007 at 12:56 AM
RE: [Request] display alexa rank from my site in personal message
Here's a quick script that should do the job:[code]var PSM = "[color=red]Alexa Rank: %alexa%[/color]"; var URL = "[color=red]www.google.com[/color]"; function OnEvent_Initialize(MessengerStart) { if (Messenger.MyStatus > 0) { MsgPlus...
phalanxiiScripting09-22-2007 at 08:11 AM
RE: RegExp - exec
If you want a quick fix, try:[code]var MyString = "C:\\David\\eg.png"; var re = /([^\/\\]*)\./; var FileBase = re.exec(MyString)[1];[/code]But just as an explanation, when you use the [font=Courier]new RegExp("...")[/font] notation, your ...
phalanxiiScripting08-22-2007 at 11:14 AM
RE: [?] Window Control Focus
That works perfectly, thanks! I had actually seen that function beforehand, but I thought it was for windows. But luckily for me, it works for controls. :)
phalanxiiScripting08-14-2007 at 10:32 AM
[?] Window Control Focus
Hey, everyone. Haven't been on for a while but I've got a scripting/windowing question... How can I set/kill the focus on a control in a window? I've looked through MSDN and haven't been able to find anything. Any ideas?
phalanxiiScripting08-14-2007 at 08:49 AM
RE: Check for contact...
This script will also auto-message if no-spam@hotmail.co.uk's status is set to something like Busy or Out To Lunch (I also think it's simpler):[code][color=blue]var[/color] Email = [color=brown]"no-spam@hotmail.co.uk"[/color]; [color=blue]var[/co...
phalanxiiScripting04-21-2007 at 06:39 AM
RE: Replace Text
You can also use this (click [url=http://msdn.microsoft.com/library/en-us/scrip t56/html/17bab5a2-bcd4-46c2-8b52-b2b5a0ed98a3.asp] here[/url]):[code]encodeURI(URIString)[/code]
phalanxiiScripting03-23-2007 at 07:02 AM
RE: Help with cancelling msgplus timer
The syntax in the original script still works. Take for example:[code]var aChatWnds = [1, 2, 3]; Debug.Trace("Delay1"+[aChatWnds.length-1]);[/cod e]The debug logs "Delay12", as it should be. Sure, your way with round brackets works too. However, i...
phalanxiiScripting03-13-2007 at 08:19 AM
RE: Help with cancelling msgplus timer
[code]"Delay1"+ChatWnds.length-1[/code]This is not a valid string. [font=Courier]"Delay1"[/font] is a string and [font=Courier]ChatWnds.length[/font] is a number, so the plus operator ([font=Courier]+[/font]) joins them together as a new string o...
phalanxiiScripting03-11-2007 at 11:36 PM
RE: Script Editor Colouring
Yes, I was talking strictly about the script colouring. Sorry about any confusion, I just wanted to comment on the nature of the bug.
phalanxiiWLM Plus! Bug Reports01-31-2007 at 04:40 AM
RE: Script Editor Colouring
Another script editor colouring bug:[code]Debug.Trace([color=brown]"\\\"");[ /color][/code]It appears that the editor takes the apostrophe as part of the string if there is a backslash before it ([font=Courier]"\""[/font] resulting in [font=...
phalanxiiWLM Plus! Bug Reports01-30-2007 at 11:08 AM
RE: Again a code that a really need
Does it work if the line is removed?
phalanxiiScripting01-30-2007 at 06:44 AM
RE: Again a code that a really need
Yes you will need to change the 6. In the code that you provided, it would be changed to a 10. The only problem is that having 10 delays will stuff up Felu's code. If you absolutely require 10 or more delays, it is possible to rewrite the code to su...
phalanxiiScripting01-30-2007 at 06:26 AM
RE: Again a code that a really need
The only reason why you have to put it there is because you can't have two functions of the same name in the script. [font=Courier]OnEvent_ChatWndReceiveMessage()[/fon t] is simply a function that is called when you receive a message. In your script,...
phalanxiiScripting01-30-2007 at 05:47 AM
RE: Again a code that a really need
Yes, put it at the end [b]unless[/b] you already have an [font=Courier]OnEvent_ChatWndReceiveMessage()[/fon t], which will be the case if you use Felu's code. In this case, you will insert it into Felu's function:[code]function OnEvent_ChatWndReceiv...
phalanxiiScripting01-30-2007 at 05:43 AM
RE: Again a code that a really need
Use [font=Courier]MsgPlus.CancelTimer([color=red]Timer Id[/color])[/font] to cancel your delay timers. Because the timers are cancelled, [font=Courier]OnEvent_Timer()[/font] won't be called, so the next sound will not play. There are multiple ways of...
phalanxiiScripting01-30-2007 at 05:39 AM
RE: [Question] Strange error
Try enclosing the path with quotation marks:[code]function OnEvent_Initialize(MessengerStart) { testing(); } function testing() { var Shell = new ActiveXObject("WScript.Shell"); Shell.Run([color=red]"\""[/color]+MsgPlus.Scri ptFilesP...
phalanxiiScripting01-29-2007 at 11:48 PM
RE: Again a code that a really need
In order to send a message when you click a menu, you need to know the menu's ID. In my example code, these are all "MnuFeatx". Submenu's however do not have a menu ID, only a label. Therefore: No, if you make Liedjes or Albums into a submenu, yo...
phalanxiiScripting01-29-2007 at 11:16 PM
RE: Again a code that a really need
All of what you want can be found in the scripting documentation (OnGetScriptMenu, OnEvent_MenuClicked, Script Info File Schema Documentation). I don't want to write the code for you, because it's better if you learn; but here is an example for you...
phalanxiiScripting01-29-2007 at 07:10 AM
RE: Code for script with sounds
Yes, this is perfectly possible using timers. Use [font=Courier]MsgPlus.AddTimer([color=red]TimerId[ /color], [color=red]Elapse[/color])[/font] to create a timer called [i]TimerId[/i] which lasts for [i]Elapse[/i] milliseconds (1/1000 of a second). Wh...
phalanxiiScripting01-28-2007 at 06:26 AM
RE: [Request] "Xfire" like functions
There was a thread on this a while ago which can be found [url=http://shoutbox.menthix.net/showthread.php?ti d=65235]here[/url], though there hasn't been much of an update on progress recently. It's possible, but compared to the features of Xfire, t...
phalanxiiScripting01-26-2007 at 10:45 AM
RE: Hex Help
phalanxiiScripting01-17-2007 at 04:15 AM
RE: Windows help
Well for a start, to get your close button working, you can change the button's ID to [font=Courier]BtnCancel[/font]:[code]<Control xsi:type="ButtonControl" Id="[color=red]BtnCancel[/color]"> <Position Left="112" Top="25" Width="50"/> ...
phalanxiiScripting01-02-2007 at 11:51 AM
Script Editor Colouring
This a very minor "visual" bug that doesn't affect the function of MP!L at all. The colouring in the script editor becomes confused when using quotation marks are used in regular expressions. According to [url=http://msdn.microsoft.com/library/en-...
phalanxiiWLM Plus! Bug Reports01-01-2007 at 06:24 AM
[Hide Excerpts] Pages: (6): « First « 1 [ 2 ] 3 4 5 6 » Last »