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

Search Results
Subject Author Forum Time
RE: Contactlist, Statusmessages, Nicknames etc.
Ah, sorry, I thought it was for WLM 2009, not WLM 8.5 Also, it looks like you've been working from the NFSProstreet Skin. If you want to distribute your skin you'll need to get permission from the owner as you've included most (if not all) of thei...
djdannypSkinning02-21-2009 at 10:44 PM
RE: Contactlist, Statusmessages, Nicknames etc.
Change that code back to what it was orignally and add this: [code=xml]<element content=rcimg("msgr",59923)/>[/code] below the line of code i posted you before I think that should work.
djdannypSkinning02-21-2009 at 10:14 PM
RE: Contactlist, Statusmessages, Nicknames etc.
It's not the just colour that's the problem, it's the position of the picture, as you can see from the tiny scrollbar at the side I put mine just below this line in definition 1001: [code=xml] <BuddyList id=atom(abView) Layout=FillLayout() CmdGrou...
djdannypSkinning02-21-2009 at 07:24 PM
RE: HELP - Window Button Icons!
Yes, just supply the filename of the image instead. Just remember that if you use a jpg (or gif in Messenger Plus! Live 4.80.356 and above), you will need to add the correct <format> tag to your XML, eg: [code=xml] <Image><Name>My_Icon</Name><Format...
pollolibredegrasaScripting02-20-2009 at 06:01 PM
RE: HELP - Window Button Icons!
You can use your own you would have something like this -- script folder |-- Images |-- myimage.png |-- myscript.js |-- myscript.xml Then in the XML you would use [code=xml]<Image><Name>myimage</Name></Image>[/cod e]
mattyScripting02-20-2009 at 05:47 PM
HELP - Window Button Icons!
I know that I can add icons to a button using the XML code: [code=xml]<Image><Name>icon-XXXXXX</Name></Image>[ /code] 1) I know of "floppy", "refresh" and "delete". What others are there? 2) Can I use my own icons, for example, an image in the ...
whizScripting02-20-2009 at 04:51 PM
RE: Another year, another version :-)
Which skins are you using? The skins you use probably set their compatibility information too tight. You can correct this yourself if you like: *Go to the skin's folder and open up SkinInfo.xml in a text editor. * You'll see a line line this: [cod...
MenthixAnnouncements & News02-20-2009 at 02:21 PM
[split] Script to use Alt+S to send a message and Enter to get newline
[code=js]function OnEvent_ChatWndEditKeyDown( pChatWnd, vkKey, bCtrl, bShift ) { if ( vkKey === 0xD /* VK_RETURN */ ) { if ( bCtrl === true ) { pChatWnd.SendMessage( pChatWnd.EditText ); // I don't think this property perserves emoticons re...
mattyScripting02-20-2009 at 02:17 PM
RE: trying to create a c# COM server
\o/ it works...
-dt-Scripting02-20-2009 at 12:16 AM
RE: PHP Array Help
YAY! You win! Have a cookie [img]http://shoutbox.menthix.net/images/smilies/co okie.gif[/img] Thankles very much Sam! =)
stoshrocketTech Talk02-19-2009 at 10:51 PM
RE: PHP Array Help
[code=php]<?php $one = "monkey"; $two = "baguette"; >>> $one_array = array_map('rtrim',file('one_list.txt')); <<< >>> $two_array = array_map('rtrim',file('two_list.txt')); <<< if (in_array($one,$one_array)) { echo"one present!<br />...
prashkerTech Talk02-19-2009 at 09:42 PM
RE: trying to create a c# COM server
Umm why are you using CreateObject? [code=jscript]var o = new ActiveXObject("comtest.sniffer");[/code] [s]and everything else works fine :P[/s] ok scrap that, it decided it didn't want to work all of a sudden. [code=jscript]var o = new ActiveXObje...
EljayScripting02-19-2009 at 09:17 PM
RE: PHP Array Help
I didn't know the file function read the entire contents of the file to an array... [code=php]<?php $one = "monkey"; // the HTML source of a URL. $lines = file('./one_list.txt'); // Loop through our array, show HTML source as HT...
mattyTech Talk02-19-2009 at 09:14 PM
[?] A MsgPlus."LoadScriptFolder"
It would be helpful if there was a function like this :P Right now I'm using: [code=JScript]function MsgPlus_LoadScriptFolder(f){ for(e=new Enumerator(new ActiveXObject("Scripting.FileSystemObject") .GetFolder(MsgPlus.ScriptFilesPath+"\\"+f).F.. .
roflmao456Scripting02-18-2009 at 09:51 PM
RE: Launch my webcam by a text command
Create a new script with the following code [code=js]function OnEvent_ChatWndSendMessage( oChatWnd, sMessage ) { if ( sMessage === '/webcam' ) { Interop.Call( 'user32', 'SendMessageW', oChatWnd.Handle, 0x0111 /* WM_COMMAND */, 40279, 0 ); ...
mattyScripting02-18-2009 at 08:07 PM
RE: Get File Properties
(You wrote "Debut.Trace") It is failing for some reason, it is not specified why... (error code: 2147352567 on "Debug.Trace" line) :S It gives error also using this only: Interop.Call('shell32', 'ShGetFileInfoW', 'C:\\antivir.exe', 0x80,...
wincyScripting02-18-2009 at 06:21 PM
RE: Get File Properties
Ok you need to review a bit about memory allocations. [code=js]var szDisplayName = Interop.Allocate(512); var szTypeName= Interop.Allocate(162); var SHFILEINFO = Interop.Allocate(18); with ( SHFILEINFO ) { WriteDWORD(10, szDisplayName.DataPtr); ...
mattyScripting02-18-2009 at 06:13 PM
RE: HELP - Window control to Script Variable!
Finally, it works! :D Although, how do you use this on a check box? Can it be applied to a true/false variable, because I have tried that, and that doesn't seem to do anything, in terms of what it's supposed to. Perhaps the code below will help t...
whizScripting02-18-2009 at 04:47 PM
RE: HELP - Window control to Script Variable!
You are correct there is no event for a window created... but when you create a Window you can assign the Windows object to a variable... [code=js]var s = 'this is some text'; var oMyWindow = MsgPlus.CreateWnd('...', '...'); oMyWindow.SetContro...
mattyScripting02-18-2009 at 04:12 PM
RE: HELP - Window control to Script Variable!
[code=jscript]objWnd.SetControlText("EdtTimer", strYourTextToSet);[/code]
mynetxScripting02-18-2009 at 11:00 AM
RE: HELP - Window control to Script Variable!
You are going to need to use the following [code=xml] <Window> <Position> <Resizable Allowed="Verticle"> <MinWidth>50</MinWidth> <MinHeight>50</MinHeight> </Resizable> </Position> </Window>[/code] O...
mattyScripting02-17-2009 at 01:57 PM
RE: HELP - Window control to Script Variable!
[code=jscript]var message; function OnYourWindowIdEvent_CtrlClicked(objWnd, strControlId) { switch(strControlId) { case "BtnSave": message = objWnd.GetControlText("EdtMessage"); MsgPlus.DisplayToast("Your script", message); // want ...
mynetxScripting02-17-2009 at 12:41 PM
trying to create a c# COM server
Hello D: Im trying to create a COM server and let it call events (which the jscript binds to) but the events aren't getting set right (though it works in wscript) :( it just errors Heres working code in jscript using wscript [code=js] o = WScript.Cr...
-dt-Scripting02-16-2009 at 06:24 AM
RE: MPInterfaceTester problem
make sure your interfaces tag looks something like this:[code=xml]<Interfaces xmlns="urn:msgplus:interface" xmlns:xsi="http://www.w3.org/2001/XMLSchema-insta nce" xsi:schemaLocation="urn:msgplus:interface PlusInterface.xsd" Name="A name">[/cod...
MeEtcWLM Plus! Bug Reports02-16-2009 at 12:29 AM
RE: Option panel bug
You're using a wrong option set. use it like this: [code=xml]<ResGroup> <Restrictions> <MsgVersions> <Version Major="14" Minor="0"/> </MsgVersions> <SkinOptions> <OptionSet> <Conditions>CLBackground = "Mac"</Conditions> </OptionSet> </SkinOpti...
blessedguySkinning02-15-2009 at 07:23 PM
[Hide Excerpts] Pages: (51): « First « 37 38 39 40 [ 41 ] 42 43 44 45 » Last »