This code within the Run Method loads the Sound File matching the Image File Names as an AudioClip Object and plays it using the Play() Method.

			// Get audio clip that goes with the animation
			String sSoundClip = new String(m_imageFile + ".au");
			AudioClip jabber = getAudioClip(getCodeBase( ), sSoundClip);

			// Play the audio clip
			jabber.play( );

Last Page

The complete applet source code.