Urgently need help play audio file in the application

1
Hey.... Is the a way to play .wav audio file in mendix. If so can you please help me out here. I'm using firefox, safari and chrome: <audio> tag is not work and I've even looked at the video player module, Nothing is working and the <embed> tags only work in Firefox. Is there a solution that works on all browsers? I've tried to develop a java applet but I don't how to link the java file
asked
1 answers
3

You could try and use the html snippet with this as the code:

<embed height="50" width="100" src="sample.wav">

With the src being of course the reference to your file.

answered