Sending message without opening window.. - Printable Version -Shoutbox (https://shoutbox.menthix.net) +-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58) +--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4) +---- Forum: Scripting (/forumdisplay.php?fid=39) +----- Thread: Sending message without opening window.. (/showthread.php?tid=67425) Sending message without opening window.. by Deco on 10-17-2006 at 08:50 PM
Is there a way to do that? RE: Sending message without opening window.. by Chris4 on 10-17-2006 at 09:12 PM Something like this script? RE: Sending message without opening window.. by Chris4 on 10-17-2006 at 09:32 PM
Won't work for me either. RE: Sending message without opening window.. by Deco on 10-18-2006 at 02:40 PM
No not like that script RE: Sending message without opening window.. by Felu on 10-18-2006 at 03:03 PM
code: code: That won't show up the window and send your message too . Chose any of the code above as you wish to close or minimize the window . Edited RE: Sending message without opening window.. by Deco on 10-18-2006 at 03:21 PM
Didn't work. code: Thanks for helping RE: Sending message without opening window.. by CookieRevised on 10-18-2006 at 03:39 PM
quote:The problem in your request is that messages need to be send to a contact (sounds strange as I write it ). What I mean is: in order to send a message to a contact you, or messenger or whatever else for that matter, must open a session to that contact. This can only be done: 1- by opening a conversation window 2- by making your own protocol talking thingie which opens the session, talks to the switchboard, deals with server messages, etc The latter is extremely difficult, and will almost result in your own IM client compatible with the Mssenger protocol anyways. So not so doable in practice or for this purpose. The former is the only thing you can do. A trick you could do is hiding the chat window once you opened it. But you still need to open it and thus it will stil be 'visible' to the user (even if it was for a brief 100 milliseconds). Not to mention you need to take a lot of issues into account also (eg: make sure the contact is online, he isn't blocked, or check you don't accidently send an SMS, etc). If it is just to prevent the chat from stealing the focus: that's the way the Plus! script engine works. Plus! _needs_ to bring the chat window in focus in order to be able to send a message. However, once this has been done it _should_ put the focus back to what it was. RE: Sending message without opening window.. by Deco on 10-18-2006 at 03:49 PM
Thanks Cookie. I knew you'd save my day. |