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

Search Results
Subject Author Forum Time
RE: Interface Writer | [release] 3.0 | 22/08/2010
Would it be possible to create and show a transparent window over an exported one of an unknown size (not necessarily unknown, since the user sets it, but it obviously won't be a fixed amount)? Would it be able to "attach" to a window, or would I ...
whizScripting05-26-2010 at 06:25 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Just so you know, I'm now working on version 3.0, with some additional features, plus some tidying up of other bits. The script now checks for obselete files, there's a new dialog class, and I'm working on multiple items on the clipboard (rather l...
whizScripting05-24-2010 at 08:38 PM
RE: [?] Modal windows...
I have tried it by switching programs and then back again using the taskbar (and Atl+Tab), and they both seem to work. Probably because mine focuses the child and brings it to the top.
whizScripting05-20-2010 at 07:09 PM
RE: [?] Modal windows...
If anyone's interested as to how to do it, this should work. [code=jscript]// make the parent window, make a variable for the child window var WndParent = MsgPlus.CreateWnd("Interface.xml", "WndParent"); var WndChild = null; // use any event her...
whizScripting05-20-2010 at 05:28 PM
[?] Modal windows...
Just wondering if it's actually possible to make a Plus! window "attach" to another Plus! window, so that you have to close the modal one first (it is called modal, isn't it)... Can't seem to find anything on MSDN... :S
whizScripting05-19-2010 at 06:38 PM
RE: [REQUEST] Flashing keyboard when recieving message
I would have thought you can only make CapsLock, NumLock and ScrollLock flash, since the others are related to the hardware (well, except the volume - surely they don't need LEDs)...
whizScripting05-15-2010 at 06:30 PM
RE: Getting all my contacts
You need to enumerate the contact list like this. [code=js]var enum = new Enumerator(Messenger.MyContacts); var contacts = new Array(); for (; !enum.atEnd(); enum.moveNext()) { contacts.push(enum.item().Email); } Debug.Trace(contacts.join(", ")...
whizScripting05-09-2010 at 06:48 PM
RE: MP3 sequential track numbering?
Looks great! Downloaded. :)
whizTech Talk04-20-2010 at 05:39 PM
MP3 sequential track numbering?
I was wondering if anyone knew of a program that can set track numbers of MP3 files sequentially (i.e. set the first file to 1, the second to 2, and so on). I have already tried Tag&Rename, but I want to know if there's a freeware alternative availa...
whizTech Talk04-20-2010 at 05:00 PM
RE: [Request] Disable/Enable.
[code=js]var Enabled = 1; function OnGetScriptMenu() { var Menu = "<ScriptMenu>"; Menu += " <MenuEntry Id=\"ToggleEnable\">" + (Enabled ? "En" : "Dis") + "able...</MenuEntry>"; return Menu + "</ScriptMenu>"; } function OnEvent_Menu...
whizScripting04-09-2010 at 08:15 PM
RE: auto accept files
Would it be possible to create a script that modifies the registry value for automatically accepting file transfers?
whizScripting04-02-2010 at 07:22 PM
RE: Forum down?
It's been down again! :@ I've just managed to get on again... I too only see this problem for this site only. :S
whizForum & Website03-23-2010 at 03:51 PM
RE: Forum down?
Well, it's working at the moment. I'll have to wait and see...
whizForum & Website03-21-2010 at 02:46 PM
RE: Forum down?
Maybe, and it just went again. :S I've tried it on my Wii and DSi - they all go at the same time... ...which makes sense since they all use the same wireless router.
whizForum & Website03-21-2010 at 01:56 PM
Forum down?
Has the forum been down? Since I haven't been able to get on it for the last few days...
whizForum & Website03-21-2010 at 12:04 PM
RE: I've been thinking...
Fair enough, I'll change it later (I can't test it right now). Any ideas for some events not working, though?
whizScripting03-19-2010 at 08:06 PM
RE: I've been thinking...
It's difficult for me to test, since I don't have that many contacts, and I have Messenger Plus! event notifications for everything, but after changing a few settings, I have so far worked out that "<user> has just signed in" (contact online) not...
whizScripting03-18-2010 at 07:04 PM
RE: I've been thinking...
Something I just wrote out. Except it doesn't seem to detect all types of events. Any ideas? [code=js]// WLM Toasts - easily detect Messenger toasts // By Whiz @ WhizWeb Community (http://www.portal-wwc.org.uk) // Adapted from "MSN Popup Spy" by...
whizScripting03-17-2010 at 08:19 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
I'll do that in the next version, but it might be a while before I get round to it - exams and all that... :)
whizScripting03-14-2010 at 11:11 AM
RE: Alert sound while set to busy, how?
I suppose a script could play the sound file if you're set to busy... [code=js]function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind) // message received event { if (Origin !== Messenger.MyName && Messenger.MyStatus === 4) //...
whizWLM Plus! Help03-13-2010 at 11:33 AM
RE: March desktops!
[url=http://img220.imageshack.us/img220/2093/deskt opmi.png][img]http://img231.imageshack.us/img231/7 978/desktopli.png[/img][/url] Guess which version of Windows I'm using... :P [spoiler]It's Windows XP Home Edition, with the Media Center theme and...
whizGeneral Chit Chat03-12-2010 at 08:48 PM
I've been thinking...
I've seen a few questions about an event for when an email is received. And I remembered [url=http://www.msgpluslive.net/scripts/view/224-M SN-Popup-Spy/]this[/url]. If it's possible for a script to display the text from a popup, can a RegExp not b...
whizScripting03-11-2010 at 08:26 PM
RE: Interface Writer | [release] 3.0 | 22/08/2010
Version 2.9 is out, with a clipboard! :P And some other miscellaneous changes - see the change log for the rest. :) I haven't got round to all of the stuff I want to do - you'll see there's still loads in the to-do list. ;) I'll get round to...
whizScripting03-10-2010 at 08:26 PM
RE: Scripting API Wishlist
Alright, how about this: dynamically add/edit/remove menu items in a MenuButtonControl (maybe in a similar way to [b]OnGetScriptMenu()[/b] with the script menu).
whizScripting03-06-2010 at 08:12 PM
RE: Scripting API Wishlist
A method of halting script execution by X milliseconds. For example: [code=js]function Two() { PartOne(); >>> MsgPlus.Pause(500);<<< PartTwo(); }[/code] ...could be used instead of... [code=js]function Two() { PartOne(); MsgPlus.AddTimer("Two"...
whizScripting03-06-2010 at 12:46 PM
[Hide Excerpts] Pages: (23): « First « 9 10 11 12 [ 13 ] 14 15 16 17 » Last »