Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Dec 31st, 2005, 12:55 PM   #1
bae
Newbie
 
Join Date: Apr 2005
Posts: 17
Rep Power: 0 bae is on a distinguished road
Implementing Sounds?

How would I implement sounds to my applet along with MouseListeners?

ex. Would this work?

import java.applet.*;
import java.awt.*;
import java.awt.event.*;
import java.net.*;
import java.util.*;

public class Selection extends Applet implements ItemListener, MouseListener, MouseMotionListener
{-code-
...
...
}

I basically want sound to play when a user hovers his mouse over an object.



Best regards,
Ben. :banana:
bae is offline   Reply With Quote
Old Jan 4th, 2006, 5:22 PM   #2
alcdotcom
Programmer
 
Join Date: Jan 2006
Location: Dallas, TX
Posts: 49
Rep Power: 0 alcdotcom is on a distinguished road
How to Write a Mouse Listener

Sounds
alcdotcom is offline   Reply With Quote
Old Jan 7th, 2006, 9:27 AM   #3
JavaMan
Newbie
 
Join Date: Oct 2005
Posts: 29
Rep Power: 0 JavaMan is on a distinguished road
The AudioClip class uses Applets to load a music.

First declare your new AudioClip object:
private AudioClip sound;

Then load it:
sound = Applet.newAudioClip(this.getClass().getResource("sound.wav"));

When your mouse is within a region, just play the sound:
sound.play();
JavaMan is offline   Reply With Quote
Old Jan 7th, 2006, 9:29 AM   #4
Polyphemus_
Expert Programmer
 
Polyphemus_'s Avatar
 
Join Date: Aug 2005
Location: Rotterdam, the Netherlands
Posts: 942
Rep Power: 3 Polyphemus_ is on a distinguished road
@Bae: use code tags next time.
Polyphemus_ is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 4:25 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC