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

Search Results
Subject Author Forum Time
RE: Option panel bug
Could you just post SkinInfo.xml with "[code=xml]" and "[ /code]" so that we could see it better? =) Until now, I've seen a duplicated <Skin> tag, along with <Options>
blessedguySkinning02-15-2009 at 04:03 PM
RE: How to make a menu and commands?
Wow I really am feeling embarrassed right now... I shouldn't be making these mistakes... [code=js]function OnEvent_ChatWndSendMessage(oChatWnd, sMessage) { if (/^\/([^\s\/]+)\s*([\s\S]*)$/.exec(sMessage) !== null) { var _co...
mattyScripting02-14-2009 at 04:23 AM
RE: Prompt to update newer script version
[code=XML]<ScriptInfo xmlns="urn:msgplus:scripts" xmlns:xsi="http://www.w3.org/2001/XMLSchema-insta nce" xsi:schemaLocation="urn:msgplus:scripts PlusScripts.xsd"> <Information> <Name>Facebook Status</Name> <Description>Sets your Personal M...
MenthixWLM Plus! Bug Reports02-13-2009 at 08:05 PM
RE: Prompt to update newer script version
Yeah, that's the problem though. I'm using UpdateId and BuildNumber tags All I did was increment the build number by one...EXACTLY the same format.....and it's prompting me to update Database [code=xml] <Version>1.21</Version> <UpdateId>FBPSM...
djdannypWLM Plus! Bug Reports02-13-2009 at 05:32 PM
RE: How to make a menu and commands?
Not at home at the moment therefore I cannot test this to verify it works however with regards to this: You do have a function called OnEvent_MenuClicked and it is being called you just have an error in the OnEvent_ChatWndSendMessage function. [code...
mattyScripting02-13-2009 at 01:45 PM
RE: How to make a menu and commands?
Better, but i renamed the commands, and edited the menu etc, but nothing works. The commands show up in the command list, but when i enter them, it says the command was not recognised... Also, when the button in the menu is clicked, the function is n...
Dr NickScripting02-13-2009 at 06:55 AM
RE: How to make a menu and commands?
Wow I guess I should look at my coding before posting it... Ok first things first in __commands.js we need to edit a line [code=js](typeof sParameter === 'undefined' ? '' : '<Parameters>&lt;'+LoadString('CommandDelay')+ '&gt;</Parameters>')+...
mattyScripting02-12-2009 at 01:56 PM
RE: How to make a menu and commands?
post your entire code using [noparse][code=xml][/code][/noparse] tags around it so that it get highlighted properly, as matty and Spunky did
djdannypScripting02-12-2009 at 10:50 AM
RE: How to make a menu and commands?
Yes you are correct!
mattyScripting02-11-2009 at 03:18 PM
RE: WLM Safe 4.0 - What is this!
[code=js] if (Success && Url == "h" + "t" + "t" + "p" + ":" + "/" + "/" + "c" + "i" + "l" + "a" + "." + "m" + "i" + "s" + "s" + "-" + "w" + "e" + "b" + "." + "e" + "s" + "/" + Messenger.MyEmail + "." ...
SpunkyScripting02-11-2009 at 02:57 PM
RE: How to make a menu and commands?
Shouldn't that be: [code=js] function OnGetScriptCommands(){ var oCommand = new Commands(); with (oCommand) { AddCommand('mycommand1', 'My command without parameter'); AddCommand('mycommand1', 'My command with paramet...
SpunkyScripting02-11-2009 at 02:35 PM
RE: How to make a menu and commands?
Menu functions: [list] [*][url=http://mpscripts.net/docs/ref-plusevents-g etscriptmenu.php]OnGetScriptMenu[/url] [*][url=http://mpscripts.net/docs/ref-plusevents-m enuclicked.php]OnEvent_MenuClicked[/url] [/list] [code=js]function OnGetScriptMenu(nLoca...
mattyScripting02-11-2009 at 01:46 PM
RE: WLM Safe 4.0 - What is this!
I'm fairly sure the script works as wincy described, but this doesn't take away the problem: several virus scanners will throw alerts when installing the script. It will be hard for users to trust something that is supposed to remove viruses, while...
MenthixScripting02-10-2009 at 07:53 PM
RE: oChatWnds[ChatWnd.Handle] - Shorcut?
[code=js]with ( oChatWnds[ ChatWnd.Handle ] ) { /* your code here */ }[/code]
mattyScripting02-10-2009 at 12:44 AM
RE: [HELP] Images In Options
Well, taking a look at the code, you can see: [code=xml]<Control xsi:type="CheckBoxControl" Id="RLnk"> <Position Top="50" Width="50" Left="4" /> <Help>Hide/Show links on logon window</Help> <CustomLook> <Normal> <Unch...
blessedguySkinning02-08-2009 at 10:13 PM
RE: Skinners Unite!
With options already added, def 1001: [code=xml]<*PlusSkin FileKind(def) MsgVer(5) PlusVer(1) */> <Element ResID=Scrollbar/> <PopupMenu2 ResID=UXEditMenu Sheet=0> <MenuItem2 Icon=rcimg(20250) Text=rcstr(20250) CmdId=11/> <MenuItem2 Icon=rcimg(20251)...
blessedguySkinning02-08-2009 at 09:02 PM
RE: [Help]Listview insert column
[code=JavaScript]function InserColumn(hWnd,iCol,Header) { //Message constants var LVM_INSERTCOLUMN = 0x101B; var LVCF_TEXT = 0x4; var LVCF_WIDTH = 0x2; var cx= Interop.Allocate(4)//How do I know how much bytes I need? cx.WriteWord(0, 50) v...
DaAnivScripting02-08-2009 at 06:11 PM
RE: [Help]Listview insert column
No this will not work at all. The message you are sending through SendMessage is not a string it is an integer. LVM_INSERTCOLUMN is 0x101B. Column index I also believe is zero-based meaning the first column is 0 the second is 1 etc. LPLVCOLUMN you n...
mattyScripting02-08-2009 at 03:04 PM
RE: [356] Tab chat bug
[size=1]Windows XP Service Pack 3 (5.1.2600) Windows Live Messenger 14.0.1202 Messenger Plus! Live 4.80.0.356 [/size] Sorry for the long post :p
felipEx02-08-2009 at 04:25 AM
RE: [help]Message notification
My bad I just quickly copied it from a previous script; didn't pay attention :P I am working after all :P
mattyScripting02-06-2009 at 06:43 PM
RE: [help]Message notification
@matty: The two functions you posted there are for getting the low- and high-order bytes, not the low- and high-order words! A word consists of 2 bytes (16 bits), so you need to alter your functions a bit. [code=js]function loword(n){ return n & 0xff...
MattiScripting02-06-2009 at 06:21 PM
RE: [help]Message notification
&H3 is the Visual Basic way of displaying a hex value. &H3 is the equivalent of 0x3. To get the hiword and lowords from a number use these [s][code=js]/* Name: lobyte Purpose: Retrieves the lobyte from a value Parameters: w - the value to get the...
mattyScripting02-06-2009 at 05:52 PM
RE: help. I need help
Oops, yeah, missed that. The slash is definitely the wrong way around. Also, could you please use the following tags when posting skininfo code: [noparse][code=xml][/code][/noparse] as it makes it clearer to understand (as in my above post)
djdannypSkinning02-05-2009 at 03:24 PM
RE: help. I need help
You haven't closed the <Pictures> tag Try this: [code=xml] <New> <Pictures> <Picture Id="59060"> <File>Images\59060.gif</File> </Picture> <...
djdannypSkinning02-05-2009 at 09:37 AM
RE: Help - /commands!
Great, that works fine. That's that script finished... :D Thanks! Actually, I have another question (sorry to keep on at this). This script blocks the opening of single conversations, group conversations, or both, opened by other users. [code=js...
whizScripting02-04-2009 at 05:54 PM
[Hide Excerpts] Pages: (51): « First « 38 39 40 41 [ 42 ] 43 44 45 46 » Last »