On Apr 6, 7:22 am, "Andrew Thompson" <u32984@uwe> wrote:
Knute Johnson wrote:
.
Start another thread ..
(class - java.lang.Thread)
..the does the background processing and when it is
finished open up a dialog
..with your message.
(* JOptionPane makes displaying a simple message, easy.)
HTH
--
Andrew Thompsonhttp://www.athompson.info/andrew/
Message posted via JavaKB.comhttp://www.javakb.com/Uwe/Forums.aspx/java-general/200704/1
Well i had developen a sismilar application long back ...
it was an alarm system .
whenever an alarm triggered i had to pop up a message on the screen
and play a sond
i had achived it with dialog in awt..
public void optionPane(String message,Component c)
{
JOptionPane optionPane = new JOptionPane(message,
JOptionPane.PLAIN_MESSAGE);
optionPane.setOpaque(false);
final JDialog dialog = optionPane.createDialog(c,
" Image Uploader");
dialog.setVisible(true);
}
for audio i had used AudioClip (applet class)
import java.applet.*;
AudioClip ac = getAudioClip(getCodeBase(), soundFile);
ac.play(); //play once
ac.stop(); //stop playing
ac.loop(); //play continuously
also we have sun api for playing sound...
check this out ..http://www.javaworld.com/javaworld/javatips/jw-javatip24.html- Nascondi testo tra virgolette -
- Mostra testo tra virgolette -