Thanks for the reply...my test page is located here
www.offroadhd.com/video/test/test.htmlI'm working with the Logitech Revue which is a GoogleTV device. For full compatability of TV viewing there has to be keyboard funtionality.
The Javascript they recommend to use is this:
window.onload = function() {
document.onkeydown=function(e){
if (!e) e=window.event;
switch(e.keyCode) {
case 37:
alert("Left arrow");
break;
case 38:
alert("Up arrow");
break;
case 39:
alert("Right arrow");
break;
case 40:
alert("Down arrow");
break;
case 13:
alert("Enter/select");
break;
}
}
}
and the media keys to recognize are:
Key codes:
Play/Pause: 179
Stop: 178
Next: 176
Previous: 177
Thank you for any advice or suggestions you can provide. Once I have this issue worked through I will purchase a full multi domain license of your product.
Thank You,
Craig H Gray
Forward Thinking