Hi, I'm trying to use webkitAudioContext for create audio at runtime, but It don't work.
var context = new audioContext(),//webkit browsers only
oscillator = context.createOscillator();
oscillator.type = 0; // sine wave
oscillator.frequency.value = 2000;
oscillator.connect(context.destination);
oscillator.noteOn && oscillator.noteOn(0);
Javascript doesn't give me any error, but my Gear2 don't emit any sounds.
Thanks a lot