Shoutbox

typing message notification - 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: typing message notification (/showthread.php?tid=70536)

typing message notification by questsin on 01-10-2007 at 08:56 PM


Any one know of a way to script and send the "typing message" notification event seen in the bottom of the chat window prior to sending a message via a script.

No need to explain why it would be helpful.
ie. scripts takes long to respond to due load or prcessing etc.
opps


RE: typing message notification by RaceProUK on 01-10-2007 at 09:40 PM

Theoretically, it's possible, but it would require some real low-level work, which means a helper DLL.


RE: typing message notification by questsin on 01-15-2007 at 05:44 AM

I tried writing text to a window and setting focus similar to

Interop.Call('user32', 'SetFocus', ChatWnd.Handle);
var orig = ChatWnd.EditText;
ChatWnd.EditText = ChatWnd.EditText + " ";
ChatWnd.EditText = orig;

but id doesn't seem to be working. In tabbed chatting the tabs "DONT CHANGE" either. something might be wrong with my Interop

any ideas along this direction?


RE: typing message notification by RaceProUK on 01-16-2007 at 07:24 PM

What are you trying to do there?


RE: typing message notification by questsin on 01-16-2007 at 09:29 PM


In theory I'm trying to give focus to the chat window I want to send the "text typing message".

then by changing the text window and resetting it. I'm expecting messenger to see this as activity and then send the "user is typing" message to the other user. 

What would trigger Messenger to send this message?


RE: typing message notification by RaceProUK on 01-16-2007 at 10:00 PM

Simply changing the text won't trigger the notification: you'll ahve to send simulated keypresses.


RE: typing message notification by questsin on 01-23-2007 at 04:43 PM


I used the windows api call to "SendMessage" it actually enters text in the message box, but it still doesn't trigger the notification? any ideas?