I have to to create an Ajax based live text editor. The specifications are following;
• User logs in on the website
• User sees the list of logged in users
• User selects one of the logged in users let’s say B, if the user B is available (not communicating with any other user), it gets a connection request. If user B accepts the request, both users are connected.
• Once the users are connected, they share text editor. If user A enters anything on the text editor available on his screen, the same text is made visible on user B’s screen at the same coordinates. Similarly, if user B enters anything or removes anything from the text editor on his screen, the same happens on user A’s screen.
• Create pointer shaped images on both user’s screens to represent mouse pointers. When user A moves his mouse pointer, the image on user B’s screen should be moved according to the movement of user A’s mouse and similarly, when user B moves his mouse, the image on user A’s screen should be moved accordingly.
Can anybody help me??