Joshua Noble
Joshua Noble
I believe the best way to do this would be to add a callback to annyang once that key's pressed event triggers, and then when that key is released, clear...
Report back if you get a chance to try it before I do! As long as I remember I will give it a crack sometime tomorrow
After a little bit of testing, this is probably easiest: ```javascript var phrases = [] var keyDown = false; if (annyang) { annyang.start() } document.onkeydown = function(e) { if (e.keyCode...