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

Search Results
Subject Author Forum Time
RE: Scripting API Wishlist
Well, let me focus on some issues I have with scripting. First of all, I already reported it on the BETA testing forums (see [url=http://shoutbox.menthix.net/showthread.php?ti d=86707][FixMe] Scripts: Colorization with Mosaic[/url]) but apparently no-...
MattiScripting11-24-2008 at 05:51 PM
RE: Regex with Variables
It's because you have to escape the parentheses around the gamer tag with a backslash, but as you're creating a RegExp with a string, you first have to escape the backslash itself too. :P[code]var XBG = NewPsm.match(new RegExp("Xbox 360: (.*?) [co...
MattiScripting11-21-2008 at 04:41 PM
RE: [Public Beta] Vista x64 Compatibility
Are you sure you clicked the correct download link at [url=http://www.msgpluslive.net/download/]the download page[/url]? It seems like some of us attempt to get the latest public beta by clicking the big blue button, but the public beta download link...
Matti11-19-2008 at 12:48 PM
RE: Caching which windows have a command enabled
It's not an array, it's a regular object. Correct, but it's much faster and efficient to have them indexed by handle in an object than looping through an array and checking the Handle property. Also, in your example code, there's no way to get a...
MattiScripting11-19-2008 at 12:44 PM
RE: [Release] Log Manager - Version 1.1.008
If you mean log files saved as plain text (*.txt), then no, Log Manager can't do that. This is because merging plain text logs is as simple as pasting everything in one text file... You can do that very easily yourself!
MattiScripting11-19-2008 at 12:31 PM
RE: XML and Metacharacters
And we can better give script developers the most correct way to do it. :)
MattiScripting11-18-2008 at 05:36 PM
RE: The data necessary to complete this operation is not yet available
It may be your test.php which gives some extra characters? If I access the test.php on your server, it gives me:with a tab character and a new line character at the end. Maybe you should check your code to see if there are no blank characters in fron...
MattiScripting11-16-2008 at 03:35 PM
RE: The data necessary to complete this operation is not yet available
Okay, I now see where your problem is. It is not possible to replace your sent message with a response text retrieved through an asynchronous XMLHTTP request. This is because if you return something in the onreadystatechange event, it'll be returned...
MattiScripting11-16-2008 at 01:34 PM
RE: The data necessary to complete this operation is not yet available
Now that is very strange! :S Could you please post your complete code here, preferably in [noparse][code]...[/code][/noparse] tags?
MattiScripting11-16-2008 at 09:59 AM
RE: [Release] Countdown Live (Latest: 2.2.021)
Yes, I was already thinking about showing it only once, also for the Plus! Live version compatibility message. I think I'll have a look at it today and see how I can implement that in the best possible way I can find. :) I'd really appreciate it if...
MattiScripting11-16-2008 at 09:54 AM
RE: # of characters in a message?
Mjeh, Plus! uses the JScript engine of the Windows Scripting Host which doesn't run in a browser and therefore doesn't have thewindow and document objects for interacting with the HTML document, but as for strings, numbers and other objects they'r...
MattiScripting11-15-2008 at 08:27 PM
RE: The data necessary to complete this operation is not yet available
You should [u]only[/u] use the responseText property when (xmlhttp.readyState == 4) and (xmlhttp.status == 200). Try that and see if it works.[code][font=Courier](...) xmlhttp.onreadystatechange = [color=blue]function[/color] () { [color=blue]if[/...
MattiScripting11-15-2008 at 08:24 PM
RE: # of characters in a message?
I suggest you have a look at a JavaScript String reference, such as the one at [url=http://www.w3schools.com/jsref/jsref_obj_stri ng.asp]W3Schools[/url]. That should give you a good idea what methods you have. [list] [*]To check the first X characters...
MattiScripting11-15-2008 at 05:25 PM
RE: Help me test script (Ctrl-W Closer) :D
Damn, now [u]that[/u] is quite a complicated script! :O This has to be the first Plus! Live script where I don't understand how it works. :PBecause it has to work in the chat window regardless of which control is in focus. You can press TAB as much ...
Matti11-13-2008 at 04:57 PM
RE: Messenger Plus should support "/me"
Also, if Plus! should parse "/me" in received messages, that somewhat ignores the command escaping feature. Imagine this scenario: [list=1] [*]The contact sends a message:[code]//me is a cool command[/code] [*]The user receives the message:[code]/m...
MattiWLM Plus! Bug Reports11-07-2008 at 05:00 PM
RE: [Release] Countdown Live (Latest: 2.2.021)
@bluretina: That's quite odd, the seconds and minutes are supposed to update properly. Please check the update interval in the Settings tab, maybe it's too high and thus it doesn't change to often? 1 to 10 minutes is a good setting. Also make use ...
MattiScripting11-07-2008 at 04:52 PM
RE: [released] | [beta] Video Converter Plus!
What's the problem with a rich-edit control with the ReadOnly and Multiline attributes set to true? It does just what you want... Heck, you don't even have the greyed-out style when you set it to read-only which you get for normal edit controls! :...
MattiScripting11-06-2008 at 07:26 PM
RE: [Release] X360+
There's nothing hard on reading/writing booleans from an XML file, as long as you do it properly: Writing:[code]node.text = 1*bBoolean;[/code] Reading:[code]bBoolean = (1*node.text == true);[/code] That way, you always read and write 0 or 1 and you ...
MattiScripting11-06-2008 at 05:41 PM
RE: Buttons & Images
GIF support has always been in Plus! Live, but [u]animated[/u] GIF support was added since the 4.79 beta. ;)
MattiScripting11-06-2008 at 04:56 PM
RE: [?] Script editor
Ah, damn it. And I just sent you a link to the [url=http://www.microsoft.com/downloads/details.as px?FamilyId=D466226B-8DAB-445F-A7B4-448B326C48E7&d isplaylang=en]Download details: Visual C++ 2008 Feature Pack[/url] for Visual C++ to create a native R...
MattiScripting11-04-2008 at 06:42 PM
RE: [?] Script editor
That'd be awesome, matty! :D Oh, don't forget that Notepad++ is open-source, so maybe you want to base your editor on that one? :)
MattiScripting11-04-2008 at 05:15 PM
RE: Popup ListBox
I'm afraid you can't. The Plus! Live scripting API gives us abilities to work with custom Plus! windows, but modifying a chat window isn't possible. It'd require advanced hooking methods such as the ones Plus! Live uses, but I think enabling thi...
MattiScripting11-01-2008 at 08:00 AM
RE: Compatibility with Messenger 2009 Beta
Good work, Patchou, as always! :) Can we expect an updated scripting/skinning documentation any soon? :P
MattiAnnouncements & News11-01-2008 at 07:51 AM
RE: Popup ListBox
Hmm, that's actually a good question. I think it's possible to do this by manually positioning the ListBox control just beneath the Edit control, then fill the list every time the text changes and hide it when the Edit control loses its focus. Alth...
MattiScripting10-31-2008 at 09:17 AM
RE: Adverts On Skin?!
Well, if you don't have any experience involving UIFILEs, you'd better learn it first a little or simply stay away from it. :P Luckily, the worst thing that can happen when you try to modify the skin would be that the skin won't loaded. Back in th...
MattiSkinning10-30-2008 at 09:26 AM
[Hide Excerpts] Pages: (66): « First « 10 11 12 13 [ 14 ] 15 16 17 18 » Last »