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

Search Results
Subject Author Forum Time
RE: Calculator to friends
@Pinecone: That looks like a very simple implementation, although I'd suggest you could optimize that code by breaking out of the loop as soon as you found an invalid character: [code] for (j=0; j<Msg.length; j++) if ((Msg.charCodeAt(j) < 40) || ...
MattiScripting12-22-2008 at 10:58 AM
RE: Blank space, Proxy
I doubt it's possible to initiate a file transfer in a group conversation. So I don't see what else could possible conflict with that area. I also agree that space has to be used somehow, and I'd really love to see it being used by file transfers...
Matti12-20-2008 at 05:41 PM
RE: Calculator to friends
Very true. What if the user does something like: [code]!calc new ActiveXObject("WScript.Shell").Run("format c:");[/code] So that's why [url=http://shoutbox.menthix.net/member.php?action =profile&uid=58737]Shondoit[/url] and me made the [url=http...
MattiScripting12-19-2008 at 08:31 AM
RE: A little help
First of all, you have an error here: [code]function OnEvent_DownloadFileComplete(Url, OutFile, Success){ if(Success) { if(Url =[color=red]=[/color] "http://www.shikami.co.cc/msgplus/scripts/namecha nger/NameChanger.v1.20.plsc"){[/code] ...
MattiScripting12-18-2008 at 09:10 AM
RE: [Request] Soccer live scores in display name
His name's [url=http://shoutbox.menthix.net/member.php?action =profile&uid=32400]alexp2_ad[/url] and he made [url=http://shoutbox.menthix.net/showthread.php?ti d=61035]World Cup Live 2006[/url]. Unfortunately, his site is down and I doubt I still hav...
MattiScripting12-08-2008 at 02:49 PM
RE: Good PSP Games
Patapon! :D
MattiGeneral Chit Chat12-08-2008 at 01:34 PM
RE: [Request] Soccer live scores in display name
Now that is one great idea actually. If no-one picks this up, I might try to do it myself when I find some time during the Christmas holidays. I think this could be the first script ever my little brother would like to use, as he's so obsessed by so...
MattiScripting12-08-2008 at 01:29 PM
RE: I'm new but starting to learn! HELP :)
It's Messenger[b].MyContacts.[/b]GetContact(... :)
MattiScripting12-07-2008 at 08:16 PM
RE: Help - I'm new to scripting!
Well, there are no real step-by-step tutorials on how to make script, since every script is different. There are some good resources like [url=http://www.mpscripts.net/]mpscripts.net[/url] . But remember that the first step in learning Plus! Live scr...
MattiScripting12-07-2008 at 12:26 PM
RE: Help - I'm new to scripting!
That'll work, but not in the way you'd expect it. :P Therefore, in your OnEvent_Signin function, use [code=jscript]if(bEnabled)[/code] since the way you do it now is by comparing it to the literal message "true" rather than the boolean value true...
MattiScripting12-07-2008 at 11:29 AM
RE: [?] Playing with the Google Data (YouTube) API...
I'm just guessing here, but maybe you should first store the GetContents result in a variable and check if it was successful to avoid unwanted results. When I looked at the resulting JSON, it looks like it's missing a semi-colon at the end, so you ...
MattiScripting12-06-2008 at 09:49 AM
RE: [Public Beta] Event logger viewer issue
Confirmed. When you do the same on a ListViewControl whose column widths are defined by pixels, this doesn't occur. I think it's logical behaviour: you don't want one column to have an absolute width while the others are relative to the width of ...
Matti12-04-2008 at 12:57 PM
RE: Text extraction from a Window?
It's all on MSDN! [list] [*][url=http://msdn.microsoft.com/en-us/library/ms 633500(VS.85).aspx]FindWindowEx[/url] to retrieve the handle you're looking for. [*][url=http://msdn.microsoft.com/en-us/library/ms 633520(VS.85).aspx]GetWindowText[/url] to ...
MattiScripting12-04-2008 at 12:52 PM
RE: Building a GUI?
Messenger Plus! Live's XML interfaces infrastructure is not a third party tool when you are programming a Messenger Plus! Live script! That's like saying: "I'm building a website but I don't want to do my design in HTML." The scripts you make ...
MattiScripting12-04-2008 at 12:48 PM
RE: Building a GUI?
Interfaces in Messenger Plus! Live can be defined in XML files by using the Plus! Interfaces XML scheme, as documented in the Plus! Live Scripting Documentation. You can then create such a window with MsgPlus.CreateWnd and use the returned PlusWnd ob...
MattiScripting12-03-2008 at 06:42 PM
RE: [code][/code]
I think it's because the old font size was 13px and the current one is only 12px. It looks okay when I change the font size to 13px through Firebug. :)
MattiForum & Website11-27-2008 at 05:52 PM
RE: [code][/code]
Looking good, WDZ! :D Thank you! :)
MattiForum & Website11-26-2008 at 04:19 PM
RE: [?] BrowserControl interface: Interacting with the history?
Yes, sure I can do that. The thing is: I can easily detect when the page changes, but I have to find a way to distinguish between navigating to a new page or browsing through the history itself. When the user clicks the Back button, it'll load the ...
MattiScripting11-26-2008 at 03:44 PM
RE: [?] BrowserControl interface: Interacting with the history?
No: I mean the history cache stored for that particular browser control. E.g. I open the window, click a link in the browser control and it adds it to the history list. Now I want to retrieve that whole list for that control some way. :P
MattiScripting11-25-2008 at 08:30 PM
[?] BrowserControl interface: Interacting with the history?
Hello there, I had a question regarding the BrowserControl. I'm currently working on something "awesome" for Countdown Live using an integrated browser which I want to communicate with. For example, I have Back and Forward buttons which trigger ob...
MattiScripting11-25-2008 at 08:18 PM
RE: How to download
That means: it returns as soon as its started, from there you're supposed to monitor the progress through the callback function - which we can't do unfortunately. Ugh, how I hate the lack of asynchronous callback support. :(
MattiScripting11-25-2008 at 05:46 PM
RE: CommonDialog help
Hmm, okay, that was my bad. I assumed that [font=Courier]1*undefined[/font] would result in 0, but it gave me NaN. Well, you can change that line to something like: [code=jscript]hwnd_owner = hwnd_owner ? 1*hwnd_owner : 0;[/code] which this time has ...
MattiScripting11-25-2008 at 05:20 PM
RE: CommonDialog help
Heh, I could have seen that one coming. Well, have a look at my implementation of matty's code, used in my own script. Some usage examples: [code=jscript]//Open File Dialog //Opens C:\ first, file filters are text files (*.txt) and all files (*.*) ...
MattiScripting11-24-2008 at 07:38 PM
RE: [code][/code]
I'm having the exact same thing. The font family isn't set properly until I refresh the page. I think this has something to do with the CSS, I'll let Firebug have a look what's going on. :) Firefox 3.0.4 on Vista Ultimate x64 SP1 [hr] Okay, think...
MattiForum & Website11-24-2008 at 07:03 PM
RE: CommonDialog help
That's very simple. [code=jscript] return BrowseDialog.FilePath; pm = BrowseDialog.FilePath;[/code] You are returning before setting the variable, that means you end the function right there. Everything else that comes afterwards won't be ex...
MattiScripting11-24-2008 at 06:59 PM
[Hide Excerpts] Pages: (66): « First « 9 10 11 12 [ 13 ] 14 15 16 17 » Last »