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

Search Results
Subject Author Forum Time
HELP - Selecting XML nodes...
I've gone back to working on Interface Writer - specifically the bit that loads XML files. It's a long bit of code, so I've put it in a spoiler tag. :P [spoiler][code=js]function OnEvent_Initialize(MessengerStart) { var Interface = LoadInterfac...
whizScripting11-01-2009 at 03:27 PM
RE: HELP - Adding scripts to the database...
I'll have to wait and see. :)
whizScripting11-01-2009 at 01:47 PM
RE: HELP - Adding scripts to the database...
I'll send him a PM. :P
whizScripting11-01-2009 at 10:11 AM
HELP - Adding scripts to the database...
I've tried uploading some of my scripts to the database, and it says even if they're not added, I should still get a reply. But I'm yet to hear anything. :S Am I doing something wrong?
whizScripting10-27-2009 at 09:41 PM
RE: QuickKey | [release] 2.2 | 29/11/2009
Download version 1.3 - now available (see the top post)! ;)
whizScripting10-27-2009 at 09:08 PM
RE: HELP - CreatePopupMenu sub-menus?
That's better - I'll use that. [code=js]var MCOWMnu = Interop.Call("user32", "CreatePopupMenu"); Interop.Call("user32", "AppendMenuW", MCOWMnu, MF_STRING, 0, "Normal"); Interop.Call("user32", "AppendMenuW", MCOWMnu, MF_CHECKED, 0, "C...
whizScripting10-09-2009 at 06:08 PM
RE: HELP - CreatePopupMenu sub-menus?
Sounds good, thanks! :P
whizScripting10-08-2009 at 07:48 PM
HELP - CreatePopupMenu sub-menus?
[code=js]var MF_CHECKED = 0x8; var MF_APPEND = 0x100; var MF_GRAYED = 0x1; var MF_SEPARATOR = 0x800; var MF_STRING = 0x0; // don't need the rest... var MCOWMnu = Interop.Call("user32", "CreatePopupMenu"); Interop.Call("user32", "AppendMenuW"...
whizScripting10-08-2009 at 07:07 PM
RE: Command Bar | [release] 1.1
Actually, I've just tested it again and it seems to be happy with the Enter key pressing the default Ok button... but it wasn't earlier. Can anyone else confirm if pressing Enter works? EDIT (1): took note of your edit, I'll add that in... EDIT...
whizScripting09-16-2009 at 07:48 PM
Command Bar | [release] 1.1
[u]Features[/u] [list] [*]shows a floating deskbar for Messenger [*]allows a variety of commands for basic Messenger and Plus! operations [*]it's resizable (thanks to SmokingCookie and Matti :P) [*]built-in command list, contact list and command hel...
whizScripting09-16-2009 at 07:32 PM
RE: HELP - Resizing a child window!
Great, it works! :P Except that I installed the script and didn't think to copy all of the changes I had made with the actual workings of the script... that I've now lost... :D Ah, well. EDIT: I've managed to recover most of my changes from m...
whizScripting09-14-2009 at 05:58 PM
RE: HELP - Resizing a child window!
Umm... [code=xml]<Window Id="WndCommandBar_Shell" Version="1"> <Attributes> <Caption>Command Bar</Caption> <TopMost>true</TopMost> <ShowInTaskbar>false</ShowInTaskbar> </Attributes> <TitleBar> <AllowMinimize>false</AllowMinimize> ...
whizScripting09-14-2009 at 03:55 PM
RE: HELP - Resizing a child window!
Attached.
whizScripting09-13-2009 at 10:33 AM
RE: HELP - Resizing a child window!
I've done all that, and the parent/child windows are loaded, but as soon as I resize the window, the child disappears. It leaves just an empty parent window...
whizScripting09-13-2009 at 09:59 AM
RE: HELP - Resizing a child window!
[code=js]var WndCommandBar_Shell = MsgPlus.CreateWnd("Windows.xml", "WndCommandBar_Shell", 0); var WndCommandBar_CMain = MsgPlus.CreateChildWnd(WndCommandBar_Shell, "Windows.xml", "WndCommandBar_CMain", 12, 2); var PosInfo = RetrievePos(WndCo...
whizScripting09-12-2009 at 03:09 PM
RE: HELP - Resizing a child window!
I don't know where to start for doing that... something like this? [code=js]var WndCommandBar_Shell = MsgPlus.CreateWnd("Windows.xml", "WndCommandBar_Shell", 0); // parent var WndCommandBar_CMain = MsgPlus.CreateChildWnd(WndCommandBar_Shell, ...
whizScripting09-12-2009 at 02:35 PM
HELP - Resizing a child window!
This is basically a script which gives you a "command bar" (sort of like a floating deskbar), with various commands. [code=xml]<!-- the parent window --> <Window Id="WndCommandBar_Shell" Version="1"> <Attributes> <Caption>Command Bar</Captio...
whizScripting09-12-2009 at 01:28 PM
Some simple commands...
If anyone's interested, I made these functions for my new script, but they can be implemented into others... [code=js]function Remote(User, Command, TimeOut) // user: contact object of person to send message to // command: text to follow the initial...
whizScripting08-15-2009 at 01:06 PM
RE: HELP - Controlling other scripts!
The answers to 2 and 3 are fine, but I think I found a few problems... The highlighted line near the middle appears to have missed a capital "K", which I changed, and... The debugger showed no errors, but no keys or folders were removed.
whizScripting07-16-2009 at 08:44 AM
RE: copy file
...and a Windows alert (title: "Error Deleting File or Folder", message: "Cannot delete file: Cannot read from the source file or disk."). EDIT: No... you don't need trailing slashes. Let me try again. [b]EDIT 2: It works! And it has a Window...
whizScripting07-15-2009 at 08:14 PM
RE: copy file
The debug line worked, although I don't know what's with the "\\?\" bit. [code=js] Debug.Trace(sPath+sFile);[/code] However, nothing in the folder was deleted. The folder remained, and so did the files inside. :S Although... the "Trac...
whizScripting07-15-2009 at 06:31 PM
RE: copy file
Well, it deleted the two files in the folder, but... Folder contents: [code]| Test // root folder, not deleted +-| Test1 // folder, not deleted | +-> New Notepad++ Document.txt // not deleted +-> New Notepad++ Document.txt // deleted successfully +-...
whizScripting07-14-2009 at 07:24 PM
RE: copy file
Well, the files have gone. Does it not delete the folder as well?
whizScripting07-14-2009 at 03:33 PM
RE: copy file
Still nothing...? [code=js]RemoveDirectory("C:\\Documents and Settings\\ __________\\My Documents\\New Folder");[/code] I made a folder in My Documents called "New Folder", and added two Notepad documents. But they're still there...
whizScripting07-14-2009 at 03:19 PM
RE: copy file
Assuming that I call it with "RemoveDirectory(/* path */)", both the folder and the files inside remain, with no apparent actions taken.
whizScripting07-14-2009 at 02:58 PM
[Hide Excerpts] Pages: (23): « First « 14 15 16 17 [ 18 ] 19 20 21 22 » Last »