Triggering audio with button press in Chrome 66 (not autoplay)

If this is an option do it. If not … read on

No, about unlocking audio context. Sorry for the confusion. Lost in translation.

	//resume audio context of any Hype version
	for (var key in window) {
		if (key.substring(0, 9) == "HYPE_gac_"){
            if (typeof window[key].resume == 'function') {
				window[key].resume();
			}
		}
	} 

As suggested "This is a temporary workaround until Hype updates"
unlockAudioOnClickHandler.hype.zip (69,3 KB)