I'm using hotkeys (Ctrl+key) in my flex application. getting problem when my app is running in IE. when I press Ctrl+D, im getting 'Add a Favorite' window of IE.
How should I override the default behaviour of the browser? if possible, give me some example.
Robusto
In your event handler, try
event.returnValue = false;
See this SO thread: event.preventDefault() function not working in IE
来源:https://stackoverflow.com/questions/2364004/handling-ctrl-key-event-in-ie-browser