I am searching for the documentation for the new html5 audio added in GWT 2.2 but all I can find is this http://google-web-toolkit.googlecode.com/svn/javadoc/2.2/com/google/gwt/media/client/Audio.html
That does not really list the available methods though.Is there any better documentation available?
There does not seem to be any methods such as .play() etc???
From that Audio object, you will need to call the
getAudioElement()function, which implementMediaElementand has all the functions you’re looking for likeplay(),pause(),setVolume(),getCurrentSrc(), etc.The official documentation is here.