Results 1 to 3 of 3
Thread: Adding Sound to APPLICATIONS
- 11-13-2011, 12:26 AM #1
Member
- Join Date
- Apr 2011
- Posts
- 48
- Rep Power
- 0
Adding Sound to APPLICATIONS
Ive been digging into Google for hours now and I cant find one tutorial for adding sounds to applications. They are all just for Applets. If I try to use the Applet tutorial code, I get this error in the line:
"The Method getCodeBase() is undefined for the class"Java Code:import java.applet.AudioClip; public class SoundManager { private static AudioClip[] sounds = new AudioClip[32]; private static int count = 0; public void loadSound(String file){ sounds[count++] = getAudioClip(getCodeBase(), file); } }
How do I fix this problem, OR how do I implement sounds into APPLICATIONS
- 11-13-2011, 08:16 AM #2
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,394
- Blog Entries
- 7
- Rep Power
- 17
Re: Adding Sound to APPLICATIONS
There's a static method in the Applet class: newAudioClip( ... ); it loads an audio clip for you; there's no need to worry about that Applet class, i.e. you don't need to build an applet, you're just using a static method from that class (the method is in the wrong class i.m.h.o.)
kind regards,
JosWhen people rob a bank they get a penalty; when banks rob people they get a bonus.
- 11-13-2011, 09:33 AM #3
Member
- Join Date
- Jul 2011
- Location
- New Delhi,India
- Posts
- 56
- Rep Power
- 0
Similar Threads
-
Problems with sound in java and USB sound card
By marblecatdog in forum New To JavaReplies: 1Last Post: 04-19-2011, 12:02 PM -
Adding all elements of an Array together, not adding up correctly
By Teclis in forum New To JavaReplies: 1Last Post: 04-05-2011, 08:58 PM -
Adding sound to an applet
By Ryan10 in forum New To JavaReplies: 1Last Post: 03-02-2011, 04:54 PM -
Adding wav sound into a JLabel.
By hitmen in forum AWT / SwingReplies: 2Last Post: 02-17-2009, 05:59 AM -
Problem in adding sound.
By shanky_sanks in forum Java AppletsReplies: 6Last Post: 03-29-2008, 08:37 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks