Search Results |
Subject |
Author |
Forum |
Time |
RE: [HELP] Send On Signin Should be: [code=js]function OnEvent_Timer(TimerId){ Open(Messenger.MyContacts.GetContact(TimerId)); }[/code] | matty | Scripting | 01-12-2009 at 01:58 PM |
RE: [Updated with biggy code...] [solved]Right display pics The thing comes from the elements[code=xml]<Element Layout=BorderLayout()> <Element id=atom(beakspacer) Class="WithBar"/> <Element id=atom(beak) layoutpos=bottom ContentAlign=bottomright Class="WithBar" active=0/> </Element>[/code]along with th... | mynetx | Skinning | 01-12-2009 at 01:00 PM |
RE: New Skins [solved] Similar stuff to this has been part of some discussions. It really depends on if you prefer Major.Minor.Build.Revision (like 14.0.8050.1202, Microsoft prefers this way) or vice-versa (like 4.79.0.353, Patchou prefers Major.Minor.Revision.Build). For ... | mynetx | Skinning | 01-12-2009 at 12:39 PM |
RE: RegExp help/Alternative? Thanks you Spunky. I never considered doing it that way, but because of that quick reply, I have it all sorted now:D Only one note: To work properly, needs to be [code=js] media_string = media_string.split("\\0"); [/code] Cheers man | ArkaneArkade | Scripting | 01-12-2009 at 03:32 AM |
RE: RegExp help/Alternative? You can return an array... [code=js] function RunReg(){ var myArray = new Array(); myArray[0] = "Blah"; myArray[1] = 404; myArray[2] = "example"; return myArray; } function OtherFunction(){ var ret_val = RunReg(); Debu... | Spunky | Scripting | 01-12-2009 at 03:00 AM |
[353] Scripting : CreateWnd not working properly with LockMessenger Hi! Is it supposed that MsgPlus.CreateWnd would create (and show) an interfaz window when Messenger is locked, is it normal? :p Example [code=JScript]var wnd; function OnEvent_Initialize(MessengerStart) { MsgPlus.AddTimer("test", 2000) MsgPlus.Lo... | felipEx | | 01-12-2009 at 01:33 AM |
RE: [Request] Custom Contact List Title [code=js]function OnEvent_Initialize(bMessengerStart) { OnEvent_ContactListWndCreated(); } function OnEvent_SigninReady(sEmail) { OnEvent_ContactListWndCreated(); } function OnEvent_ContactListWndCreated() { if (Messenger.ContactListWndHandle === 0)... | matty | Scripting | 01-11-2009 at 07:11 PM |
RE: [Request] Custom Contact List Title [code=js]function OnEvent_Initialize(bMessengerStart) { OnEvent_ContactListWndCreated(); } function OnEvent_SigninReady(sEmail) { OnEvent_ContactListWndCreated(); } function OnEvent_ContactListWndCreated() { if (Messenger.ContactListWndHandle === 0)... | Mnjul | Scripting | 01-11-2009 at 07:11 PM |
RE: [Request] Custom Contact List Title [code=js]function OnEvent_Initialize(bMessengerStart) { OnEvent_ContactListWndCreated(); } function OnEvent_SigninReady(sEmail) { OnEvent_ContactListWndCreated(); } function OnEvent_ContactListWndCreated() { if (Messenger.ContactListWndHandle === 0)... | matty | Scripting | 01-11-2009 at 06:30 PM |
RE: [Request] Custom Contact List Title Thanks for your help, but for some reason the title text only changes when the account is signed into. If the contact list for that account is closed and then reopened, the text no longer changes. | Knucks | Scripting | 01-11-2009 at 06:22 PM |
RE: [Request] Custom Contact List Title It isn't that hard to do... simple with a script. [code=js]function OnEvent_Initialize(bMessengerStart) { OnEvent_ChatListWndCreated(); } function OnEvent_SigninReady(sEmail) { OnEvent_ChatListWndCreated(); } function OnEvent_ChatListWndCreated() {... | matty | Scripting | 01-11-2009 at 05:39 PM |
RE: Important news regarding Windows Live Messenger and Messenger Plus! Live Why? We're just reading the topic, en talking about:'when's plus! gonna be released :)!' How to use that code??? :P Sorry for 2 posts.. | Ruudzter | WLM Plus! General | 01-10-2009 at 09:42 PM |
RE: Important news regarding Windows Live Messenger and Messenger Plus! Live great tip! It works!:P | X-Flies | WLM Plus! General | 01-10-2009 at 09:35 PM |
RE: Important news regarding Windows Live Messenger and Messenger Plus! Live Haha. xD | Fr4sbokz | WLM Plus! General | 01-10-2009 at 09:32 PM |
RE: Important news regarding Windows Live Messenger and Messenger Plus! Live I found some code that'll let people download Plus! as soon as it's completed [code=php] sleep(36000000); [/code] | Spunky | WLM Plus! General | 01-10-2009 at 09:22 PM |
RE: plus cmdids I have now the following code in msgres_def_1001.txt:[code=xml]<*PlusSkin Conditions(ShowOptions=1)*> <button class="HIGToolbarButton" padding=rcrect(20136) layout=BorderLayout() id=atom(skinoptionsbtn) cmdid=7460 AccRole=43 AccDefAction=rcstr(2050... | mynetx | | 01-10-2009 at 06:15 PM |
RE: Visual Basic 2008 - Reloading/Refreshing Same form This shouldn't work in VB 2008, because forms are now stored as classes rather than objects, so form1 is the class. What you would be better off doing, is making a module, and using Sub Main and having a global in the module called form1Instance, ... | andrewdodd13 | Tech Talk | 01-10-2009 at 11:48 AM |
RE: Combobox/editbox variables Sure, that's definitly possible about changing the values. I'll write out some code after I get home in a bit. I don't have any experience with using XML to store the data, but that shouldn't be too hard to do. I would recommend reading the data... | MeEtc | Scripting | 01-10-2009 at 02:15 AM |
RE: plus cmdids So Messenger 2009 does have its contact list toolbar in 1001. How can I add a working Skin Options Button therein?[code=xml]<*PlusSkin Conditions(ShowOptions=1)*> <button class="HIGToolbarButton" padding=rcrect(20136) layout=BorderLayout() id=atom(... | mynetx | | 01-09-2009 at 09:48 PM |
RE: [351] Tabbed Chat color Err, you can rightclick on the chat header and choose "Use default scene" which I have done. The tabs are black because the original scene of the contact is black; I just don't see it because of the aforementioned setting. :) /edit: Maybe you shou... | mynetx | | 01-09-2009 at 03:47 PM |
RE: External scripts To close the Chat Window [code=js]var pChatWnd = Messenger.OpenChat('johndoe@hotmail.com'); pChatWnd.SendMessage('this is a message'); Interop.Call('user32', 'SendMessageW', pChatWnd.Handle, 0x10 /* WM_CLOSE */, 0, 0);[/code] | matty | Scripting | 01-07-2009 at 08:30 PM |
RE: [?] Interface bug? You aren't doing anything wrong at all... Only thing I could suggest would be to add [code=xml]<Attributes> <IsNewGroup>false</IsNewGroup> </Attributes>[/code] To the other two RadioControls. Cheers! | matty | Scripting | 01-03-2009 at 02:30 PM |
RE: ScriptInfo : Block Windows Live Messenger 9 RC [code=jscript]if(Messenger.VersionBuild == 8050 && MsgPlus.VersionBuild < 343) Interop.Call("User32", "MessageBoxW", 0, 'You are currently using Windows Live Messenger 2009 RC.\n\nWLMStatus does work with your current Messenger version, howev... | mynetx | Scripting | 01-02-2009 at 01:30 PM |
RE: suggestion well stuff like this exists [img=800x300] url [/img] | Th3rmal | Forum & Website | 01-01-2009 at 07:05 AM |
suggestion add percentage support for img tags example [code=mycode] [img=50%][attachment][/img] [/code] | Jarrod | Forum & Website | 01-01-2009 at 06:14 AM |