Search Results |
Subject |
Author |
Forum |
Time |
RE: Window creation help! Changed it, that wasn't the only problem. There's something else :/ | Fike | Scripting | 03-18-2011 at 07:33 PM |
RE: Window creation help! You've named your window "TestWnd" but are trying to show "WndTest" :P [code=xml]<Window Id="TestWnd" Version="1">[/code] [code=js]MsgPlus.CreateWnd("Windows.xml", "WndTest");[/code] | pollolibredegrasa | Scripting | 03-18-2011 at 07:24 PM |
RE: Edit text while typing You declared the function pChatWnd so as such any references need to be pChatWnd not ChatWnd as I have highlighted in your code. | matty | Scripting | 03-14-2011 at 02:12 AM |
RE: Edit text while typing It's as simple as: [code=js]ChatWnd.EditText_ReplaceSel("my replacement"); return true;[/code] When Shift+2 is pressed, the current selection is replaced with whatever you pass to that method. When the user hasn't selected anything but is simply ... | Matti | Scripting | 03-13-2011 at 10:38 PM |
RE: help for SliderControl Sorry, couldn't get it to work =/ Even tried all possible values (A) [Considering it must be an integer value] [spoiler] [code=xml] <MultiVal Name="Contacttspt"> <DispLabel>Teste</DispLabel> <Values> <Value DispLab... | blessedguy | Skinning | 03-13-2011 at 05:09 PM |
RE: help for SliderControl I think that happens because of the possible values, the slider must suppose all values are valid. Maybe you can use ValueOf in your definitions without declaring your option as multival. For example: Definitions [code=xml] <Element LayoutPos=client... | blessedguy | Skinning | 03-13-2011 at 04:33 PM |
RE: help for SliderControl Hi there, I have never used this, but I imagine Plus! sends the value to your option according to <Range> [For example, 50% of 0-255 would be 128] [code=xml] <Control xsi:type="SliderControl" Id="SliderTest"> <Position Top="5" Width="1... | blessedguy | Skinning | 03-13-2011 at 03:41 PM |
RE: Origin and Messenger.MyName... Shouldn't you return sMessage anyway? Now you only do it when you sent the message yourself.... | foaly | Scripting | 03-12-2011 at 08:47 PM |
RE: Origin and Messenger.MyName... Would look something like this: [code=js]var oChats = {}; function OnEvent_ChatWndSendMessage(pChatWnd, sMessage) { oChats[pChatWnd.Handle] = sMessage; } function OnEvent_ChatWndReceiveMessage(pChatWnd, sOrigin, sMessage, nKind) { if (oChats[... | matty | Scripting | 03-12-2011 at 08:36 PM |
Origin and Messenger.MyName... I'm having an issue where I'm trying to see if a message sent to a conversation was sent by the current user, or the other contact. Normally, I'd use something like this: [code=jscript]function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Messag... | whiz | Scripting | 03-12-2011 at 01:39 PM |
RE: Make a script get content from a website However relying on your own code to do this isn't always the best option. An alternative is to define the version information in the ScriptInfo.xml file and Plus! will automatically check the online database for a newer version (obviously once it is... | matty | Scripting | 03-09-2011 at 01:39 PM |
RE: Debug registry key... I get it, I'll pack some script files which replace the obsolete files and delete themselves when they're run. For other files such as interface definitions or images, I'll just delete them after initialization. ;) I wrote that upgrade routine bac... | Matti | WLM Plus! Bug Reports | 02-23-2011 at 02:14 PM |
RE: Debug registry key... Absolutely. QFT![/size] | CookieRevised | WLM Plus! Bug Reports | 02-23-2011 at 01:13 AM |
RE: Script menu not showing all scripts... Well, I've just been experimenting with Idle Manager (one of my own scripts), which wasn't working at all, and I found a particularly weird problem. The start of the code in one of the files is like this: [code=js]var Idle = false; var IdleStat = ... | whiz | WLM Plus! Bug Reports | 02-14-2011 at 03:49 PM |
RE: Msg Plus 5 question about Reg You're trying to write to the registry, therefore you need to use [b]MsgPlus.ScriptRegPath[/b]. As for arrays, you define them just as you would for JScript. [code=jscript]var arr1 = new Array(); // new empty array var arr2 = new Array("Item 1", ... | whiz | Scripting | 02-12-2011 at 12:46 PM |
RE: Help needed with showing my own element under personal message I don't want to show the song I'm playing... | sayed | Scripting | 02-12-2011 at 12:45 PM |
RE: Help needed with showing my own element under personal message [code=jscript]function setNowPlaying(enabled, type, format, title, artist, album, contentID) { if (typeof(type) == "undefined") type = "Music"; if (typeof(format) == "undefined") format = ""; if (typeof(title) == "undefined") title = "... | mynetx | Scripting | 02-12-2011 at 12:40 PM |
scripting PSM bug I noticed a bugs in the new messenger plus. You can't set your PSM by script demo code: [code=js] function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message,MsgKind){ if(Message.indexOf("[test]")>=0){ Messenger.MyPersonalMessage = "test... | foaly | WLM Plus! Bug Reports | 02-10-2011 at 06:16 PM |
RE: [WEB] Firefox 4 abnormal behavior in dropdown menus I already reported this "bug" in [url=http://shoutbox.menthix.net/showthread.php?ti d=96417][WEB] Navigation drop down disappears / MyPlus! Login button / Tables for layout?![/url], but I didn't have such a cool video to show. :P There's a lot wro... | Matti | | 02-09-2011 at 10:35 AM |
RE: [Release]Idle Liar 1.0 Thanks man! :D | Jag021 | Scripting | 02-08-2011 at 09:27 PM |
RE: [?] Hiding subclass windows... [code=xml]<Window Id="WndSubclass" Version="1"> <Attributes> <ShowInTaskbar>False</ShowInTaskbar> </Attributes> <Position Width="0" Height="0"/> <TitleBar> <AllowMinimize>False</AllowMinimize> <AllowMaximize>False</AllowMaximize> ... | whiz | Scripting | 02-07-2011 at 02:57 PM |
RE: [?] Hiding subclass windows... This is what I use for my 'hidden' subclassing windows, dunno if that might help. Notice the Titlebar properties and the lack of the DialogTemplate* specification in the XML)[code=xml] <Window Id="WndSubclass" Version="1"> <Attributes> <Sh... | CookieRevised | Scripting | 02-06-2011 at 03:56 PM |
RE: [?] Hiding subclass windows... [code=xml]<Window Id="WndSubclass" Version="1"> <Attributes> <ShowInTaskbar>false</ShowInTaskbar> </Attributes> <Position Width="0" Height="0"/> <DialogTmpl/> </Window>[/code] That's the one out of Interface Writer, but I think the sub... | whiz | Scripting | 02-06-2011 at 02:36 PM |
RE: [Release]Idle Liar 1.0 Heya, I've edited this script to support WLM 14.0.8117.416... been using it for a while, since I haven't seen TheGuruSupremacy recently on WLM nor had a reply from him I decided to share a few lines of code as I'm not going to upload the script pa... | felipEx | Scripting | 02-06-2011 at 01:35 AM |
[WEB] Poor text-semantic usage (e.g. <div> over <h1> & <p>) A noticeable thing I've come across while translating, while picky, is the poor text-semantic usage in the way anything is written on the new site. [size=4]Examples[/size] [code=html] <div class="h1">Script</div> [/code] instead of... [code=html] ... | Thor | | 02-03-2011 at 06:18 PM |