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

Search Results
Subject Author Forum Time
RE: HELP - Arrays in the registry!
Yes, as long as the array elements don't contain your separator character (in this case, a comma), you'll get the same array. Since you're trying to retrieve an array of window IDs, you won't have any trouble with possibly having a comma in an el...
MattiScripting06-18-2009 at 07:07 PM
RE: Basic Questions - LaTeX
Hmm, here is an idea: [list] [*]Generate a random number for each created PNG file, e.g. "845217623.png". This will prevent any writing access trouble. [*]When the PNG is created, create the window and load the image. Store the loaded image's file...
MattiScripting06-18-2009 at 05:33 PM
RE: Basic Questions - LaTeX
Now that's really cool! :D Are you planning to publicly release that?
MattiScripting06-18-2009 at 03:56 PM
RE: Basic Questions - LaTeX
That's because JavaScript differs from JScript in some points. In this case, the Image object is available in JavaScript but not in JScript. Unfortunately, you'll have to dive into advanced code to get the size of the image. Graphical stuff is done...
MattiScripting06-18-2009 at 01:52 PM
RE: Basic Questions - LaTeX
And that's exactly why I do my coding in an external editor! :P
MattiScripting06-18-2009 at 12:03 PM
RE: Basic Questions - LaTeX
First of all, make sure that the FileExists block really works the way it should. Try to place a Debug.Trace() call inside it and see if you get the message in the debug window. Also make sure that the Interface Tester (link in previous post) gives y...
MattiScripting06-17-2009 at 01:49 PM
RE: Basic Questions - LaTeX
First of all: welcome to our forums! :D You're going to need a window with an ImageElement and a ButtonControl. You'll want to set the image on the ImageElement in the interface XML to some kind of place-holder image ("Loading" or something alik...
MattiScripting06-17-2009 at 12:07 PM
RE: CSS - id vs class
IDs have to be [u]unique[/u], there can only be one element in the document tree with a certain ID. Classes can be used multiple times throughout the tree and you can apply any amount of classes on one element. In practice, you'd use IDs for unique ...
MattiTech Talk06-08-2009 at 06:40 PM
RE: HELP - Hotkeys!
"RegisterHotkey" is a Win32 API function and is located in the "user32.dll" library. You can find this at the bottom of the MSDN page. This means you have to use Interop.Call() to call this function.
MattiScripting06-08-2009 at 06:35 PM
RE: [?] Loading an invalid XML file
What's the URL of the XML you're trying to read? Maybe there is a solution to make XMLDOM parse it.
MattiScripting05-30-2009 at 07:20 AM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Well, you're not implementing our sample code properly. :P You shouldn't re-enable the control when one item in the loop doesn't match the ID to test simply because you won't have [u]all[/u] used IDs matching that one ID, you have to check whethe...
MattiScripting05-25-2009 at 05:41 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Hah, great minds think alike! :D
MattiScripting05-25-2009 at 04:11 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Those issues aren't that hard to solve! :P [list] [*]Validation of numbers (for example, it will allow "text" as a valid height measurement) [code=js]var sFoo = "85.1"; var nFoo = 1 * sFoo; //Attempt a string to number conversion if( isNaN(nFoo)...
MattiScripting05-25-2009 at 04:02 PM
RE: MP!L5?
First of all, start off with going through this list: [url=http://shoutbox.menthix.net/showthread.php?ti d=86038][Plus 4.80: 99 Suggestions/Ideas, 99 left] --- Updated 19-01-09[/url]. We have been looking in each new build for the implementation of so...
Matti05-15-2009 at 04:36 PM
RE: [Release] Fuse
Willz surprises us with yet another amazing skin... Installed and using! :D Yes, I'm having the same problem. The text appears in white first and when I open the Choose Font dialog and press OK, the text appears but the color appears slightly light...
MattiSkinning05-15-2009 at 04:12 PM
RE: [Release] Phunk'n 2
Damn Willz... You did it once again. :O There's absolutely no way one can resist from this sexiness. :P
MattiSkinning05-07-2009 at 05:15 PM
RE: MySQL
They are needed because otherwise it won't parse the object correctly. Taken from [url=http://www.json.org/js.html]JSON.org[/url]: [quote]The text must be wrapped in parens to avoid tripping on an ambiguity in JavaScript's syntax.[/quote]
MattiScripting05-03-2009 at 07:23 AM
RE: [Reqest] Script that says heyy to whoever signs on
That's a bit more difficult. Basically, you'd have to store the time when they went online in some kind of global object and when they come online again, check the time difference first before sending the message. Here's some documented example c...
MattiScripting04-30-2009 at 04:12 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...
MattiScripting04-29-2009 at 11:06 AM
RE: HELP - No error, no action...
Very correct. To make it even worse, you're trying to use Messenger in the same scope in both meanings (the object and your number variable) - there's absolutely no way the engine will be able to work with that. Also, I'd recommend you to use a B...
MattiScripting04-29-2009 at 10:56 AM
RE: MySQL
JSON is terribly simple. Make a PHP array, output the result of [url=http://www.php.net/json_encode][font=Courier] json_encode[/font][/url] of your array and [font=Courier]eval()[/font] it in JScript. If you want to go one step further, you could stea...
MattiScripting04-28-2009 at 04:25 PM
RE: conversation close alerts
Please [url=http://shoutbox.menthix.net/basicsearch.php?d o=search&sfrm=1&keywords=open+close+notifier&fid=3 9&lookin=msg]search the forums[/url] before you post as this has been [url=http://shoutbox.menthix.net/showthread.php?ti d=89618]asked[/url] and...
MattiScripting04-13-2009 at 05:52 PM
RE: Disabling a button?
Actually, what we call a control is nothing more than a child window in a parent window with some very special capabilities. :) This means you can also send window messages to a control and (if Plus! would support this) monitor control notifications...
MattiScripting04-12-2009 at 01:44 PM
RE: [New Preview 5] WLM 8.5 Clone - Created by coolzee
That looks pretty cool indeed! :D Polish your background images a bit and make the search bar readable and then I think you got yourself a great skin! ;)
MattiSkinning03-30-2009 at 03:54 PM
RE: [Release] Oil Slick 1.02
What has Patchou to do with this? :S Patchou creates Messenger Plus! Live, he builds the skinning functionality but he doesn't create them. He organizes skinning contests but he's not the boss of the skinning creators (I hope? :P). Seriously, even...
MattiSkinning03-29-2009 at 07:16 PM
[Hide Excerpts] Pages: (66): « First « 6 7 8 9 [ 10 ] 11 12 13 14 » Last »