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

Search Results
Subject Author Forum Time
RE: Browse Help
That looks like it does...haven't tested it though so maybe not. I think it returns a string with the path you've selected.
deAdScripting10-15-2006 at 10:54 PM
RE: emoticons stopped appearing
Go to Tools > Options > Messages and make sure "Show emoticons" and "Show custom emoticons" are checked. Note that for a Yahoo contact, custom emoticons are never displayed.
deAdWLM Plus! Help10-13-2006 at 07:37 PM
RE: Windows Live 8.1 Available?????
There was a 6.2, not 6.5 :)
deAdSkype & Live Messenger10-13-2006 at 12:58 AM
RE: Not A Valid WIN32 Application
http://get.live.com/messenger/overview
deAdScripting10-11-2006 at 01:55 AM
RE: Not A Valid WIN32 Application
What are you opening the .plsc (script pack) files with? You should open them with MPTools.exe in the Plus! directory.
deAdScripting10-11-2006 at 01:23 AM
RE: TCP packets
Socket hooks are not practical, as adeptus said. Proxies do not work for everyone and often mess things up if done incorrectly...but they're your best bet.
deAdTech Talk10-10-2006 at 10:04 PM
RE: [Request] Grab timezone, and display PSM accordingly?
I might be reading your post wrong, but you can't display a specific psm for each contact.
deAdScripting10-10-2006 at 09:31 PM
RE: Useful Snippets
http://shoutbox.menthix.net/showthread.php?tid=567 47 Stickied post for this purpose... [size=1]Copy these functions in and then delete the thread?[/size]
deAdScripting10-10-2006 at 12:09 AM
RE: [REQUEST] Appearing Offline But Keep The Windows Open!
The 8.1 builds don't close windows when you switch to appear offline.
deAdScripting10-09-2006 at 08:58 PM
RE: String won't appear in J.OptionPane.. :(
What are nombre1s and nombre2s? Doubt it'll help but ya never know...
deAdTech Talk10-08-2006 at 05:17 PM
RE: stealing dynamic DP's
You will find this feature in StuffPlug 3. :) Or, you can download a DDP Stealer from [url=http://download.baxteronline.com/?id=11]here. [/url] Made by the same person who wrote the feature for StuffPlug. (Not TheBlasphemer, TheSteve).
deAdScripting10-08-2006 at 02:29 PM
RE: simplest to set up forum?
MyBB is nice. This forum runs a very old version of it. :P (It's free too :)) EDIT: I've also heard that PunBB is nice. However, I haven't used it much, but from what I've heard/seen it's very fast. Don't know a lot more though. (It's free tho...
deAdGeneral Chit Chat10-06-2006 at 01:59 AM
RE: Demand for this old feature
It's called "Window Docking" btw, to answer your other question.
deAdWLM Plus! General10-04-2006 at 08:37 PM
RE: Custom buddy pounce
Post the code that's throwing an error please :). EDIT: What do you mean by having trouble getting the debug window? If you can see the errors then you can see the debugger :S
deAdScripting10-03-2006 at 11:17 PM
RE: help block system
Please don't bump threads. As far as I know, you can not do an action that requires you to be signed in when the user signs out. The events only tell you when it's too late.
deAdScripting10-03-2006 at 11:16 PM
RE: [Release] Email tooltip
"\n" Just put it in the middle of your string: [code]Tray.EditTooltip(TrayIcon.hwnd, TrayIcon.uID, "Windows Live Messenger\n" + Messenger.MyEmail + status );[/code]
deAdScripting10-03-2006 at 08:25 PM
RE: Photoshop Issue
If you have the disk, try reinstalling, that seems to fix a lot of problems that I haven't seen other solutions for :P ... but use that as a last resort :wink:
deAdTech Talk10-02-2006 at 10:06 PM
RE: Changing text type of my Nick name
Click the [b]Windows Start Bar[/b]. It is not part of Messenger. It's usually located at the bottom-left of your screen unless you've moved it. Then press "Run" and type "charmap". Then press Enter. Alternatively, press the Windows Key and then...
deAdWLM Plus! General10-02-2006 at 06:50 PM
RE: Help with some code
Almost, there's a typo in it: [code]function OnEvent_Signin(sUserEmail){ var sEmails = new Array("email@address.com","email2@address.com" ); for(item in sEmails){ var oContact = Messenger.MyContacts.GetContact(sEmails[item]); if(oContact.Status !...
deAdScripting10-02-2006 at 06:36 PM
RE: Help with some code
See my code above :) EDIT: here, reposted: [code]function OnEvent_Signin(sUserEmail){ var sEmails = new Array("email@address.com","email2@address.com" ); for(item in sEmails){ var oContact = Messenger.MyContacts.GetContact(sEmails[item]); if(oCont...
deAdScripting10-02-2006 at 06:30 PM
RE: Help with some code
If you do not include this check, the message will not be sent. If you do include the check, the message won't be sent. Either way, the message will be sent only when it can be. I don't see the necessity of it :S it's not like it causes problems o...
deAdScripting10-02-2006 at 06:27 PM
RE: Help with some code
Cookie, that is just a check, and is not required. The same result will be produced if you do not add that if statement. Plus will not send the message if it can't.
deAdScripting10-02-2006 at 06:23 PM
RE: Help with some code
Sure. [code]function OnEvent_Signin(sUserEmail){ var sEmail = "email@address.com"; var oContact = Messenger.MyContacts.GetContact(sEmail); if(oContact.Status != 1){ var ChatWnd = Messenger.OpenChat(sEmail); ChatWnd.SendMessage("hi"); } }[/code]
deAdScripting10-02-2006 at 06:21 PM
RE: Help with some code
Cookie, I believe 134jimbodude wants to check for a specific contact instead of all of them. The code I posted above should do that. Instead of looping through them, when you know the email it is better to just find that one exactly. [size=1]EDIT: yo...
deAdScripting10-02-2006 at 06:15 PM
RE: Help with some code
134jimbodude, you can. Off the top of my head: [code]var sEmail = "email@address.com"; var oContact = Messenger.MyContacts.GetContact(sEmail); if(oContact.Status != 1){ var ChatWnd = Messenger.OpenChat(sEmail); ...
deAdScripting10-02-2006 at 06:09 PM
[Hide Excerpts] Pages: (43): « First « 27 28 29 30 [ 31 ] 32 33 34 35 » Last »