SWT & Sound



  • Hallo zusammen,
    entwickle gerade eine Applikation in SWT, welche beim Empfang einer Message auf sich aufmerksam machen soll. Habe es schon so probiert:

    try
    		{
    			AudioClip audioClip = Applet.newAudioClip(new URL(protocol + new File(absolutePath).getAbsolutePath()));
    			audioClip.play();
    		}
    		catch (MalformedURLException e)
    		{
    			if (log.isInfoEnabled())
    				log.info("Couldn't open file. Maybe the path or protocol declaration " +
    						  "isn't " + "correct. Protocol: " + protocol + " Path: " +
    						  absolutePath + ". " + e.fillInStackTrace());
    		}
    

    aber dies funktioniert nur unter WinXP, unter Win98 bleibt alles stumm!?
    Vielen Dank schon einmal fuer Eure Hilfe!
    xeonstar


Anmelden zum Antworten