I have a boxee html application. I can handle all navigation keys on the remote control, except the big back/menu button. This one closes the app - I would like to use it to bring up my app menu instead.

Is there a way to prevent default behavior on this key?

link|improve this question

52% accept rate
feedback

2 Answers

you can trigger your back/menu button since the last api update from boxee. in your js-file where you set your keyboard mode you can catch your back button with:

boxee.onKeyboardKeyBack = function(){ 
    browser.execute( "callYourShowMenuFunction()" );
}

browser.execute() delegates that to your htmlbrowser. now your backbutton should trigger your function in javascript!

remember back button usually should close the app, so don t forget to give your user an logout option ;) otherwise your app won t be published!

link|improve this answer
This answer is correct and should be marked as that by person who asked the question. – Fredrik Wallenius Mar 6 at 22:36
feedback

Backspace handling

document.body.onkeypress = function (e) {
    if (!e) 
        var e = window.event;

    /*backspace*/
    if(e.keyCode == 4){
       e.preventDefault();
       /*Do your thing*/
    }
}

On right click

document.onmousedown = function(e) {
    if (!e) 
        var e = window.event;

    /*right mouse*/
    if (e.which == 3){ 
        e.preventDefault();
        /*Do your thing*/
    }
}

Good article on similar event management http://www.quirksmode.org/js/events_properties.html

Edit: I'd recommend localising the onmousedown to the objects which you want to trigger the event on.

link|improve this answer
This doesn't work on the boxee box – IntoTheVoid Dec 21 '11 at 9:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.