When I try to play two sounds at once in an applet, it won’t work. I’m using AudioClips. Is it even possible to play two sounds at once in an applet?
When I try to play two sounds at once in an applet, it won’t
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Since Java 1.3+, use the
Clipclass of the Java Sound API. It is similar to the applet basedAudioClipclass, but better.E.G. adapted from the one shown on the Java Sound info. page.