Question
creating shift-click and ctrl-click buttons using javascript
I've been trying to use javascript to create both shift-click and ctrl-click buttons (separate buttons) but they don't seem to work. Any suggestions:
Here is the code for the shift-click button:
$(document).click(
function(e){
if(e.shiftKey){
document.Captivate.cpEISetValue('m_VarHandle.cpCmndNextSlide');
}
}
);