Welcome to the in5 Answer Exchange! This a place to get answers about in5 (InDesign to HTML5) and make requests.
0 votes

Hi,

I found this

sliderSettings = {enableKeyboard:false};

to disable keyaboard navigation.

How can I control keys instead of disable them, eg nav.to a certain page?

Thank you.

in how_to by (290 points)
  

1 Answer

0 votes
 
Best answer

OK, I found it...

$(document).keydown(function(e){
    if (e.keyCode == 39)
 
}
 
    if (e.keyCode == 37)
{
 
}
 
});

 

 
by (290 points)
selected by
Nice work finding a solution. Let me know if you need any other help.