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

Search Results
Subject Author Forum Time
RE: Screenshot Sender 5 Release Candidate 1 RELEASED (2011-09-06)!
Thanks! :)
MattiScripting10-02-2011 at 10:05 AM
RE: Screenshot Sender 5 Release Candidate 1 RELEASED (2011-09-06)!
I have increased the size of those labels in my local copy of the script, I can guarantee you that it will be in the next update. However, because those changes are relatively small and do not cause serious bugs, we'd like to wait a bit with releas...
MattiScripting09-15-2011 at 08:29 AM
RE: Screenshot Sender 5 Release Candidate 1 RELEASED (2011-09-06)!
Awesome! When you're done, simply post it here or send me or matty a PM. ;)
MattiScripting09-07-2011 at 10:02 AM
RE: Screenshot Sender 5 Release Candidate 1 RELEASED (2011-09-06)!
We're getting very close to the final release of Screenshot Sender 5.0. Today, we're pushing out the [b]first release candidate[/b] and we're marking the script [b]ready for translation[/b]. [align=center][img]http://shoutbox.menthix.net/fil es/ind...
MattiScripting09-06-2011 at 06:00 PM
RE: some problem...
Basically, if an emoticon already appeared in the message, it is preserved. If another emoticon is introduced, it won't appear in the message - which is most likely what happens when decrypting an encoded message.
MattiScripting08-29-2011 at 07:51 PM
Screenshot Sender 5 Private Beta 2
As you may already know, Matty and I have been working Screenshot Sender 5.0 for quite a long time now. [size=1](Way too long actually...)[/size] Last year, we threw the first public beta version in the wild but after that, development slacked down a...
Matti08-18-2011 at 08:56 PM
RE: [FORUM] "Plug-Ins" forum now that Scripts name has changed?
I was going to post something here, but Cookie already summed up everything I was going to say. Thanks, Cookie! :) [size=1]I wish the beta testers forums were more about testing exciting new features rather than arguing with Yuna about their latest m...
Matti08-17-2011 at 07:23 PM
RE: [?] "Dynamic" RegExp replace...
The reason why your version won't work is because regexp.$1 is evaluated once when that line is run. However, you can still do this without a for-loop and lots of replace calls. JScript allows you to pass a [u]function[/u] as second parameter for re...
MattiScripting08-17-2011 at 02:22 PM
RE: DevPlus - script testing/debug add-on...
I seriously doubt it. Plus! objects (MsgPlus, Messenger, PlusWnd,...) aren't regular objects, they're interfaces. They don't have a prototype or constructor as regular JScript objects have.
MattiScripting08-03-2011 at 09:02 AM
RE: Replace Problem
How is y defined? If you're storing values in an Array variable using string keys, then you're storing them as properties in the Object and not as elements in the Array. [code=js]var a = []; a[0] = "hello"; // stored as array element Debug.Trace...
MattiScripting08-03-2011 at 08:50 AM
RE: [Help]Sending a ChatWnd message
Debug.Trace needs a string as parameter but you're passing in a ChatWnd object. This cannot be implicitly converted to a string and thus JScript throws a type mismatch error. When debugging, I usually output the handle of a window to check if the va...
MattiScripting07-31-2011 at 10:07 PM
RE: Notice of absence (just me! beta continues)
Have a good one, Sunshine! We'll keep on hunting bugs. :)
Matti07-30-2011 at 08:39 AM
RE: [SOFTWARE-5.10.0.724] Some frames of the logging animation are not fully transparent
Its looks like the white is actually a mask of the green arrow. It does look a bit strange to me though, I don't feel like the icon nor the animation properly translate the desired meaning. Perhaps something as simple as the log icon with a check ma...
Matti07-27-2011 at 05:52 PM
RE: [SOFTWARE 5.1] Installer Bugs
For the record, that means the last option should be made checkable by clicking the text. Checkboxes should always be checkable by both their box and their accompanying label.
Matti07-27-2011 at 09:25 AM
RE: [SOFTWARE 5.1 - 724] - Skin creator is not Netbook friendly
For starters, the Screenshot preview and Browse button could be moved to the right of the Update ID, Build Number and Version inputs with the Browse button placed below the preview. Perhaps make the description field a little less high, since it can ...
Matti07-27-2011 at 09:21 AM
RE: [?] Toggle display of PlusWnd taskbar button...
One correction for Cookie: to do a bitwise NOT operation, you need to use "~" as opposed to "!", as in: [code=js]Get = Get & ~0x40000;[/code] The boolean not will not give the wanted results: [list] [*][font=monospace]!0x40000[/font]: A non-zero ...
MattiScripting06-07-2011 at 01:21 PM
RE: Messenger Plus! release policy
Thanks for this announcement, Jieff. It's sad that these policy changes had to come [i]after[/i] the 'failed' release but I hope it turns out for the better now.
Matti06-06-2011 at 03:59 PM
RE: So we're just derping around now?
I decided to see what they did with this new version. What I found was just shocking. [list] [*]The setup is now a web installer and apparently there's no full installer available. I wonder whether the /silent install option still works. [*]They dec...
Matti06-05-2011 at 02:02 PM
RE: MsgPlus!'s exclamation mark
First of all: take a chill pill. :P We all know it's getting worse with every new announcement and I totally feel the same about this whole thing but let's keep the complaining in one thread. Now back on topic. :) Good spotting, I wonder why they ...
MattiWLM Plus! General06-04-2011 at 05:15 PM
RE: Making "Commands".
As whiz said, you need to handle the command parsing yourself using an OnEvent_ChatWndSendMessage handler. In its simplest form, that would look like this: [code=js]function OnEvent_ChatWndSendMessage(ChatWnd, Message) { if(Message.indexOf("/myc...
MattiScripting06-03-2011 at 06:21 PM
RE: [Release] Log Manager - Version 1.1.008
As stated in a previous post, this project is discontinued. I'll try to help you with your problem, although I can't guarantee that it will be solved. First of all, what are the exact names of those files? Are the names in the format: [code]email@h...
MattiScripting04-07-2011 at 06:04 PM
RE: [IDEA] plusQuery
I know, I tried that but it's inaccessible. You can't read global variables from it or add variables to it. Heck, you can't even iterate over its contents. Very sad indeed. :( [size=1]Long post is long indeed.[/size]
MattiScripting04-06-2011 at 06:11 PM
RE: [IDEA] plusQuery
The solution I came up with also uses eval() as there's no global object in JScript which stores the global variables. (In browser JavaScript, there's the global object "window" which holds the global scope.) However, you'll have to do one extra...
MattiScripting04-06-2011 at 03:03 PM
RE: [IDEA] plusQuery
That is truly amazing! :O Here's a suggestion: use combined getter/setter methods for the properties in the wrapper classes. Instead of storing this.original.Size in this.Size, make a method Size which can be called as a getter with Size() or as a s...
MattiScripting04-06-2011 at 09:43 AM
RE: [Resolved] Interop.Call SendMessageW not working since Plus 5/WLM 2011
Note that there actually is no such thing as type casting in JScript. It may look and work like type casting, but actually you're calling a function which happens to behave like a cast. :P The following code: [code=js]var bool = (Boolean)(5);[/code]...
MattiScripting03-25-2011 at 07:24 PM
[Hide Excerpts] Pages: (66): « First [ 1 ] 2 3 4 5 » Last »