I\'m trying to get a sense of the viability of replacing some of my Microsoft Excel spreadsheets with Google Doc Spreadsheets. How can I create a custom keyboard shortcut t
A solution has been posted over at issue 306! For the lazy, here it is:
The new IFRAME mode in HtmlService does allow for key codes to be passed on to Add-ons...
$(document).keydown(function(e){
//CTRL + V keydown combo
if(e.ctrlKey && e.keyCode == 86){
$( '#output' ).html("I've been pressed!");
}
})
Have to click on / activate the sidebar first for that to happen.