Lyd applet i IE
Hvordan ialverden for man lyd til at virke på en applet i IE?her er den kode jeg tester med:
import java.awt.*;
import java.applet.*;
public class LydTest extends Applet {
public void init() {
try {
ac = getAudioClip(new URL(getCodeBase(), "testing.wav"));
} catch(Exception e) {}
ac.play();
}
private AudioClip ac;
}
Og her er html filens indhold:
<html>
<body>
<applet code = "LydTest.class" width=300 height=300></applet>
</body>
</html>
Se den lille applet virker fint i mozilla, men i IE vil den bare overhovedet ikke afspille noget som helst ;((((
