is typing a message event.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • eddwinpaz
    New Member
    • Dec 2007
    • 4

    is typing a message event.

    Hi every one and thanks for reading and taking the time to answer this post.

    my question is how can i make something similar to Gmail Chat does. example Eddwin is typing a message so Michael gets a little text that says myemail@gmail.c om is typing a message... how can i do that using ajax and PHP ? so far so good i had user this script and modify it to my requirements. i would like to apply that new feature onto my script.

    www.tachiracomp ras.com/chat/ please help me solve this problem and thanks...
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    I'm not sure exactly how the chat application works, but you could set a variable to true on the server-side when a user starts typing, e.g. onkeyup triggers an ajax function which updates on the server-side. On your side, the ajax function makes a request, say every second, and checks the variable. If true, print out the message.

    Comment

    Working...