Forum OpenACS Q&A: Response to Is someone interested in the ACS 4.x Java Chat Module for openacs 3.2.x?

That HTTP tunnel looks interesting. I wish they had included more information.

For those interested in a sound alert when a message comes in, here is how I did it:

At the end of the receiveMessage method in the adChatApplet.java file, I added the following:

       // Play a sound effect when the message arrives
       AudioClip audio = getAudioClip(getCodeBase(),"message-notify.wav");
       audio.play();