Hi madam
From the next release of WADE this will happen automatically, but for now you can manually fix your audio issue by adding this code to any onMouseUp or onClick event handler:
var context = wade.getWebAudioContext();
if (context)
{
context.resume();
}
You are right, this is something that has changed recently in Chrome. If your site is not one of a handful "special" sites like youtube, then you cannot autoplay audio. You need to have something like a "Click to start" button, where you resume the WebAudio context using the code I posted here.
Wade was already doing something similar automatically on the first click on the page. However now they've changed the rules (or rather Google's implementation of the rules, the web standard was not changed), so we'll need to update the engine code. In the meantime, this workaround should do the trick.