Search Results |
Subject |
Author |
Forum |
Time |
RE: B-day gift help .. skinning msn 2009 :D thanks so much ^^" I have attached my 1001.txt file but when i save the file it gives me this error: End tag must not have name 'R' (about this part: [code=xml]<ResetUserColor> <!-- ResetUserColor can't have attributes; instead we put in ch... | keep the faith | Skinning | 04-17-2009 at 12:21 AM |
RE: B-day gift help .. skinning msn 2009 thanks =) I kept trying a lot of things to make the buddy list background (as well as the login background) to work..and to change the whole color of msn.. i copied and pasted the suggestions mentioned in the thread.. and i 'didn't start a new line... | keep the faith | Skinning | 04-16-2009 at 09:44 PM |
RE: [Help] Messenger.MyContacts.GetContact Can you please try to explain in more detail what exactly you're doing... At the moment I've just written this code which probably isn't of any use. *-) [code=javascript]function OnEvent_ChatWndSendMessage(ChatWnd, Message) { if (match = /^\/tes... | davidpolitis | Scripting | 04-16-2009 at 02:27 PM |
RE: [Request] Very Simple Responder Using: - Event [i]ChatWnd_ReceiveMessage[/i] - Func [i]ChatWnd::SendMessage[/i] There is no on/off switch. I want you to try out Plus! scripting and create a boolean variable. [code=JScript]var messages = new Array(), i=0; messages[0] = "First Messa... | roflmao456 | Scripting | 04-16-2009 at 04:08 AM |
RE: B-day gift help .. skinning msn 2009 Be sure it is with the right text enconding... I don't remeber wich one it is, it's stated in the docs actually. Also, it's not [code=xml] <ResetUserColor R="225" G="0" B="0"/>[/code], it is [code=xml] <ResetUserColor> <R>255</R> <G>0</G> <... | blessedguy | Skinning | 04-16-2009 at 12:42 AM |
RE: [Help] Messenger.MyContacts.GetContact I'm pretty sure it's impossible to send a message in a group chat to only one person. Just open a new chat window with them ;) Besides which, there are a few syntax errors here, I've fixed some stuff up for you. Not that it's going to be particul... | ryxdp | Scripting | 04-15-2009 at 10:14 PM |
RE: B-day gift help .. skinning msn 2009 thanks :D I tried to change the color the way u mentioned.. didn't work and xmlspy reported an error .. so i followed how it's done in the official documentation (insert the RGB values as attributes ..and it worked= no errors reported.. but it didn... | keep the faith | Skinning | 04-15-2009 at 05:27 PM |
RE: B-day gift help .. skinning msn 2009 Add in this code in the <Options> tags up the top: [code=xml] <Messenger> <ResetUserColor> <R>0</R> <!-- RGB value of the colour you would like --> <G>0</G> <B>0</B> </ResetUserColor> </Messenger> [/code] EDIT: you can also reset the scene if you wa... | ryxdp | Skinning | 04-14-2009 at 11:42 PM |
RE: Closing a chat window [code=JScript]Interop.Call("User32.dll","Destro yWindow",ChatWnd.Handle);[/code] No SendMessage(W) stuff, just a simple function that does the work for ya. | SmokingCookie | Scripting | 04-13-2009 at 01:36 PM |
RE: Coding Suggestions? how about use both? tables for the main outline (top, left, mid, right) then divs for everything else... and by tables i mean like this: [code=xml] <table> <tr> <td colspan="3">Header</td> </tr> <tr> <td>Left</td> <td>mid</td> <td>right</td> </tr> ... | NanaFreak | Tech Talk | 04-13-2009 at 06:06 AM |
RE: Closing a chat window [code=jscript]Interop.Call('user32','SendMessag eW',ChatWnd.Handle,0x10 /* WM_CLOSE */,0,0);[/code] That should do it :) | ryxdp | Scripting | 04-13-2009 at 02:02 AM |
RE: B-day gift help .. skinning msn 2009 I'm not too sure about the graphics part, but I have noticed the definition replacement is wrong, it should be: [code=xml] <Windows> >>><Definitions><<< >>><Definition Id="1001"><<< <File>1001.txt</File> </Definition> >>></Definitions><<< </Window... | ryxdp | Skinning | 04-12-2009 at 11:04 PM |
RE: [Preview] Codename "The Favourite - Dark" Not possible to make them larger, I guess | blessedguy | Skinning | 04-12-2009 at 03:28 PM |
RE: Disabling a button? [code=javascript]var ControlHandle = PlusWnd.GetControlHandle("TestBttn"); Interop.Call("User32", "EnableWindow", ControlHandle, 0 /* Change to 1 to enable */);[/code] | davidpolitis | Scripting | 04-12-2009 at 10:34 AM |
RE: [Help] Enumerate all windows. Hmm. It gave me an error about procedure not being defined on the line: [code=js] var l = Interop.Alocate('user32', 'GetWindowTextLengthW', hWnd); [/code] I fixed that, it's actully: [code=js] var l = Interop.Call('user32', 'GetWindowTextLeng... | Emblem | Scripting | 04-12-2009 at 01:38 AM |
RE: [Help] Enumerate all windows. [code=js]var oWindows = {} function __enum () { Interop.Call('user32', 'EnumWindows', Interop.GetCallbackPtr('EnumWindowsProc'), 0); for (var oWindow in oWindows) { Debug.Trace(oWindow+' : '+oWindows[oWindow]); } } function EnumWindowsPr... | matty | Scripting | 04-12-2009 at 01:26 AM |
RE: Syntax error? First, this is how the script should be: [code=jscript] function OnEvent_Initialize(MessengerStart) { MsgPlus.LockMessenger(true); } [/code] Now for an explanation :P The way the function is represented in the Syntax section of the documentation ... | Eljay | Scripting | 04-09-2009 at 10:02 PM |
RE: Syntax error? Yeah because you are using the function all wrong. LockMessenger is a function of the object MsgPlus. LockMessenger as 1 parameter that accepts true or false. true to lock WLM false to unlock it [code=js]function OnEvent_Initialize (bMessengerStart) ... | matty | Scripting | 04-09-2009 at 09:59 PM |
RE: [REQUEST] Group chat monitor...er? [code=js]var oChatWnd = {}; function OnEvent_ChatWndCreated( pChatWnd ) { __add ( pChatWnd ); } function OnEvent_ChatWndDestroyed( pChatWnd ) { __remove ( pChatWnd.Handle ); } function OnEvent_ChatWndSendMessage( pChatWnd, sMessage ) { __... | matty | Scripting | 04-08-2009 at 03:25 PM |
RE: I need Beta Testers... You are incorrect. You do not need an installer to register the dlls. In the ScriptInfo.xml inside the PLSC you can have Plus! register dlls upon the scripts install. Your script can start the EXEs as needed. As stated you don't need to install this... | matty | General Chit Chat | 04-08-2009 at 01:16 PM |
RE: Removing DPs There have been numerous topics about an "OnEvent_DPChanged" function. There is currently a known solution: [code=JScript]var DP = ""; // Global variable specifying the user's DP var Started = false; // Just a small check variable var Time = 600... | SmokingCookie | Scripting | 04-03-2009 at 02:23 PM |
RE: PHP Question You forgot to remove the space after the first occurance of "include". :P Anyway, using [url=http://php.net/manual/en/function.require.php ]require[/url] instead of include may be something to think about... [quote]require() is identical to include(... | davidpolitis | Tech Talk | 04-03-2009 at 10:15 AM |
RE: PHP Question If you really care about that... Then you're just executing 1 line of code for the condition... you don't even need the curly brackets in that case :P [code=php] if(file_exists($llama)) include ($llama); else include("error.php"); [/code] | Felu | Tech Talk | 04-03-2009 at 09:37 AM |
RE: PHP Question I would consider the explicit comparison to TRUE an issue of style, which is why I didn't complain about it. | segosa | Tech Talk | 04-03-2009 at 08:09 AM |
RE: PHP Question [code=php]<div id="content"> <?php $page = $_GET['p']; $llama = "./page/".$page.".mdu"; if(file_exists($llama)) { include($llama); } else { include("error.php"); } ?> </div>[/code] I"ll explain what was wrong with your code. 1. ... | davidpolitis | Tech Talk | 04-03-2009 at 06:55 AM |