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

Search Results
Subject Author Forum Time
RE: [HELP] Store variable
[list] [*][b]Registry[/b] [u]Interesting for:[/u] local preferences [u]Application:[/u] use the [url=http://msdn.microsoft.com/en-us/library/9bbdk x3k.aspx]Windows Script Host Shell object[/url]. [code=js]var oWshShell = new ActiveXObject("WScript.Sh...
MattiScripting03-08-2009 at 05:13 PM
RE: [Help] Placing A New Image
[code=xml] <Resources> <New> <Pictures> <Picture Id="59000"> <File>images/women/michelleryan.png</File> </Picture> </Pictures> </New> </Resources> [/code] as i stated, i have NOT giv...
djdannypSkinning03-07-2009 at 04:13 PM
RE: [Help] Placing A New Image
I haven't specified dimensions for my pictures and they don't stretch Eddie, here's an example of what i did with the logon window: [code=xml] <Element LayoutPos=top id=atom(idSceneEdge) Background=rcbkd("msgr",4301) Height=rcint("msgr",4111)...
djdannypSkinning03-07-2009 at 03:57 PM
RE: HELP - ChatWnd not an object?
Well the first thing is that when you click Accept the RemoteUser variable has a space before the email... [code=js]RemoteUser = Message.substr(Parameter[1].length+2);[/code] You need to debug your code this was quite simple to see...
mattyScripting03-05-2009 at 12:49 AM
RE: Scripting suggestions
Sorry for the triple post. I spoke with Patchou and he is going to change the SendMessage function. If no text is entered: [code=js]pChatWnd.SendMessage();[/code] then the function will send whatever is in the chat window. It would be the same as doi...
matty03-04-2009 at 02:08 PM
RE: HELP - Searching for "7"?
Do you even read what you're highlighting? [code=js] if (Parameter[1] == "google") { >>> Search(Parameter[1].length + 1,Parameter[1]);<<< } else if (Parameter[1] == "yahoo") { >>> Search(Parameter[1].len...
MattiScripting03-01-2009 at 10:37 AM
HELP - Searching for "7"?
[code=js]function OnWndBrowserEvent_CtrlClicked(objWnd, strControlId) { switch (strControlId) { case "BtnGo": if (CmdMode) { CmdMode = false; var Command; var Message = objWnd.GetControlText("EdtAddress"); var Parameter ...
whizScripting03-01-2009 at 10:23 AM
HELP - Nothing happens!
[code=js]function OnWndBrowserEvent_CtrlClicked(objWnd, strControlId) { switch(strControlId) { case "BtnGo": // click of the "Go" button if (CmdMode) // if first character of address bar is a "!" { Wnd.setControlText("EdtAddress...
whizScripting02-27-2009 at 06:02 PM
RE: timed auto sign in
Ahem.. [code=JScript] var Delay = 10000; // Ten secs. Alter as necessary function OnEvent_Initialize(msg) { MsgPlus.AddTimer("TmrSignin",Delay); } // optional: cancel timer upon signin (if not cancelled yet) function OnEvent_SigninReady(Email) { ...
SmokingCookieScripting02-27-2009 at 11:50 AM
RE: Messenger Plus! Browser | [release] 2.0 | 24/06/2010
I'll clear out your to do-list. Add the following code to your interface XML: [code=XML] <Control xsi:type="ButtonControl" Id="MyButton"> <Position /> <!-- Use your own values for this one --> <!-- Any other code? --> <Attributes> <IsDefaul...
SmokingCookieScripting02-27-2009 at 10:53 AM
RE: timed auto sign in
Only thing I am not sure of is do scripts continue to run when there isn't a signed in user? If not this wont work. If so then somethinglike this would work :) [code=js] var _time = new __time( 12 /* HOUR */, 0 /* MINUTE */, 0 /* SECOND */ ); MsgPl...
mattyScripting02-26-2009 at 02:20 PM
RE: Very simple script - very simple problem (I hope)
[code=js] function OnOptionsEvent_CtrlClicked(Wnd, ControlId) { var Email = Messenger.MyEmail; if(ControlId=="BtnAbout"){ var Wnd = MsgPlus.CreateWnd("gui.xml", "About"); } if(ControlId == "BtnClose") { var optionSaved1 = new Activ...
djdannypScripting02-26-2009 at 12:17 PM
RE: HELP - Child Windows!
[code=xml]<Window Id="WndSearch" Version="1"> <Position Width="400" Height="150"/> <ChildTmpl>[/code] This is just after your commented out original search window. You don't close <ChildTmpl>. After changing this to <ChildTmpl/> the script...
pollolibredegrasaScripting02-25-2009 at 05:48 PM
RE: HELP - Child Windows!
I know it doesn't have any buttons, but this is what I have tried: [code=xml]<Window Id="WndSearch" Version="1"> <Position Width="400" Height="150"/> <ChildTmpl> <Controls> <Control xsi:type="StaticControl" Id="InfoTxt"> <Positio...
whizScripting02-24-2009 at 08:41 PM
RE: Scripting suggestions
Another suggestion to be implemented into Messenger Plus! 5.0 [code=js]function OnEvent_TabbedChatFocusChange ( pPrevChatWnd, pNewChatWnd ) { }[/code] This will help us with trying to code features that aren't easily doable without external subclass...
matty02-24-2009 at 03:13 PM
RE: HELP - Child Windows!
[code=xml]<!-- Browser Window --> <Window Id="WndBrowser" Version="1"> <Attributes> <Caption>Plus! Browser</Caption> </Attributes> <TitleBar> <AllowMaximize>true</AllowMaximize> <Title> <Prefix>Image</Prefix> <Text>Plus! Browser</T...
whizScripting02-23-2009 at 08:21 PM
RE: HELP - Child Windows!
Post the XML of your window. [url=http://shoutbox.menthix.net/showthread.php?ti d=61462&pid=676617#pid676617]matty's reply to Cannot CreateChildWnd[/url] [code=xml]<!-- The child window --> <Window Id="WndChildExample" Version="1"> <ChildTmpl/...
mattyScripting02-23-2009 at 08:08 PM
RE: HELP - Child Windows!
Doesn't make any difference... :S
whizScripting02-23-2009 at 08:04 PM
RE: HELP - Child Windows!
Is your variable Wnd globally defined? And why not do this... [code=js]// if a browser button is clicked function OnWndBrowserEvent_CtrlClicked(objWnd, strControlId) { switch(strControlId) { case "BtnSearch": // if the search button is clicked...
mattyScripting02-23-2009 at 07:56 PM
RE: HELP - Child Windows!
Well, it still doesn't appear to be working. Am I still missing something? [code=js]// if a menu item is clicked function OnEvent_MenuClicked(sMenuId, nLocation, iOriginWnd) { if(sMenuId == "start") { if (OpenWnd) // checks for another insta...
whizScripting02-23-2009 at 07:46 PM
RE: Messenger Plus! Live Enhancer
[code=c++]//Alexander Klimoff (http://netsources.narod.ru) // See also MSDN Magazine April 2007 [DllImport("dwmapi.dll", PreserveSig = false)] public static extern bool DwmIsCompositionEnabled(); public bool isAeroEnabled; // Check to see if compos...
mattyScripting02-23-2009 at 06:07 PM
RE: [Help] ChatWndReceiveMessage function
[s]Your code is wrong. What is happening is that the random number generated can potentially be 4 because the length of the array is 4. However an Array is zero based meaning it starts counting at 0 not 1. Therefore you need to have msgs.length-1. Li...
mattyScripting02-22-2009 at 11:49 PM
RE: HELP - Child Windows!
So, a valid example would be: [code=js]//The parent window var pBrowser = MsgPlus.CreateWnd("Windows.xml", "WndBrowser"); //The child window var pSearch = MsgPlus.CreateChildWnd(pBrowser, "Windows.xml", "WndSearch", 100, 100);[/code] As you ...
MattiScripting02-22-2009 at 05:21 PM
HELP - Child Windows!
Whenever I make a child window, like these: [code=js]MsgPlus.CreateChildWnd("WndBrowser", "Windows.xml", "WndSearch", "100", "100", true); MsgPlus.CreateChildWnd("WndBrowser", "Windows.xml", "WndSearch", 100, 100, true); MsgPlus.Creat...
whizScripting02-22-2009 at 04:50 PM
RE: Contactlist, Statusmessages, Nicknames etc.
Did you put code in the skininfo to use the 1001 style file? [code=xml] <Replace> <Window> <Styles> <Style Id="1001"> <File>styles/1001 Style.txt</File> </Style> </Styles> <Windows> </Replace> [/code] or wherever your 1001 style file is located and...
djdannypSkinning02-21-2009 at 11:57 PM
[Hide Excerpts] Pages: (51): « First « 36 37 38 39 [ 40 ] 41 42 43 44 » Last »