Originally posted by STNG:
- It doesn't support creating a gesture combined with a keyboard buttons(ctrl, alt, shift...)
- it doesn't support context dependent gestures (in Opera, one gesture can be customized/used in a different parts of the browser's UI. For an example, in Opera, I've created the "GestureRight" gesture for Paste&Go function, which works exclusively over the address field.
- No support for multiple actions in one gestureI simply can't adapt my own Opera's mouse configuration in the Firefox/MG Redox :(.
MG Redox supports all these things, since you know a little bit of JavaScript. Edit gesture > Script.
Examples:
if(globalSrcEvent.ctrlKey) alert('Mouse gesture combined with Ctrl');
if(globalSrcEvent.target == document.getElementById('urlbar')) alert('Mouse gesture only over the address field');
if (mgGestureState.globalOnImage) alert('Do something if over an image');
else alert('Do something else if not');