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

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]
mattyScripting01-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...
mynetxSkinning01-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 ...
mynetxSkinning01-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
ArkaneArkadeScripting01-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...
SpunkyScripting01-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...
felipEx01-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)...
mattyScripting01-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)...
MnjulScripting01-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)...
mattyScripting01-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.
KnucksScripting01-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() {...
mattyScripting01-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..
RuudzterWLM Plus! General01-10-2009 at 09:42 PM
RE: Important news regarding Windows Live Messenger and Messenger Plus! Live
great tip! It works!:P
X-FliesWLM Plus! General01-10-2009 at 09:35 PM
RE: Important news regarding Windows Live Messenger and Messenger Plus! Live
Haha. xD
Fr4sbokzWLM Plus! General01-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]
SpunkyWLM Plus! General01-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...
mynetx01-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, ...
andrewdodd13Tech Talk01-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...
MeEtcScripting01-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(...
mynetx01-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...
mynetx01-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]
mattyScripting01-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!
mattyScripting01-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...
mynetxScripting01-02-2009 at 01:30 PM
RE: suggestion
well stuff like this exists [img=800x300] url [/img]
Th3rmalForum & Website01-01-2009 at 07:05 AM
suggestion
add percentage support for img tags example [code=mycode] [img=50%][attachment][/img] [/code]
JarrodForum & Website01-01-2009 at 06:14 AM
[Hide Excerpts] Pages: (51): « First « 41 42 43 44 [ 45 ] 46 47 48 49 » Last »