I would like to be able to respond to play/pause/stop/ff/rew button presses on the remote while I am in a sidebar view.
CODE
var boogie = function(event) {
log ("wazzup?");
var msg = KONtx.Class.helpers.dump(event, 3, true);
//log(msg);
ctn.setEventDump(msg);
};
this.element.addEventListener('keydown', boogie, false);
allows me to detect play, pause, and stop if use a full-screen view.
When I use that code in a sidebar view I can not detect them.
I can not detect ff/rew in sidebar or full-screen.
Which page of the manual documents how to enable capture of these button presses?