Tagged Questions
Hotkeys provide quick access to user interface application or system actions via combinatorial key presses.
17
votes
8answers
8k views
Visual Studio: hotkeys to move line up/down and move through recent changes
I'm moving from Eclipse to Visual Studio .NET and have found all my beloved hotkeys except two:
in Eclipse you can press ALT-(leftarrow) and ALT-(rightarrow) to visit recent changes you have made, ...
10
votes
4answers
11k views
Best way to tackle global hotkey processing in c#?
Hi all
I'd like to have multiple global hotkeys in my new app (to control the app from anywhere in windows), and all of the given sources/solutions I found on the web seem to provide with a sort of a ...
10
votes
5answers
4k views
React on global hotkey in a Java program on Windows/Linux/Mac?
A Java6 application sits in the system tray. It needs to be activated using a hotkey (e.g. Super-G or Ctrl-Shift-L etc) and do something (e.g. showing an input box).
How do I do that on:
Windows ...
7
votes
6answers
5k views
What's the easiest way to make a hotkey for windows?
For example , you push ctrl+v and insert the buffer content into the window. How can I create my own hotkeys like that? Sorry for noobish question.
6
votes
1answer
89 views
Detect FN-Key on Mac using Javascript
i want to capture the fn-key on the Mac keyboard in my CMS application. Binding an event to the key and logging the codes showed me that the keycode returned by the fn-key is 0 (zero).
I am tempted ...
6
votes
2answers
415 views
What are cross-browser & cross-OS safe keyboard shortcuts usable for web application?
I am developing quite large web app and it is probably good idea to use hotkeys for some common tasks. However I discovered that finding safe key combinations is a problem, regarding all different ...
5
votes
2answers
1k views
Binding to Media keys on Apple keyboards under OSX 10.5
I am fairly new to OSX development, so this may be easy but google has not been helpful.
I am trying to bind an action to the media keys you find on newer Apple keyboards (Play, Pause , etc). It ...
4
votes
2answers
59 views
Why are my jQuery events not binding properly when in a loop?
I am using the jQuery hotkeys plugin to bind some keypresses to events. I tried to change this to bind looping over an array instead, but it's not working.
var letters = ["a","b","c"];
for (var x in ...
4
votes
1answer
157 views
MAC OS X hotkeys with Java applications unfocused…is it possible?
As Stephan asked 2 years ago...
A Java6 application sits in the system tray / dock. It needs to be activated using a hotkey (e.g. Super-G or Ctrl-Shift-L etc) and do something (e.g. showing an input ...
3
votes
1answer
50 views
multiple digraphs in vim
As you probably know, there is ability to enter some specific characters in vim using digraphs (In input mode Ctrl+K Rg produces ® for example).
Is there a way, to define hotkey, to enter the mode ...
3
votes
1answer
288 views
C# Detecting Ctrl+V with RegisterHotKey but not intercepting it
I need to detect when a user presses Ctrl+V (regardless of window focus - my app will likely be minimised) but I must not stop the actual paste operation.
I have tried a few things: (I am ...
3
votes
1answer
324 views
How can we detect hotkeys registered by other apps?
Is it possible to detect all the hotkeys registered by the OS as well as software applications currently running? Any native or managed approach on the Windows platform? I know that the RegisterHotKey ...
3
votes
2answers
1k views
Global HotKeys in Win&X11 with Python
I need to make a global hotkey for my application, and it should work under X11 and Windows. Programming language: Python.
Thanks.
2
votes
1answer
29 views
how to use registerHotKeys function with Ctrl+Shift+d
I'm setting up a hotkey in my code for Ctrl+Shift+d. I've got it working now as Ctrl+d (almost there...), but I can't figure out how to get the second modifier (Shift) to work. Below is the way I am ...
2
votes
1answer
137 views
What is the best way to add a custom key mapping in vim/vi? (Does there exist a unbound keyspace for customization?)
I know you can add custom keymappings to vim with imap in the .vimrc file. My question is, if one is to create additional custom operators, motions, commands and map them to keys, what is the best way ...
2
votes
2answers
237 views
Making Dreamweaver more like Notepad++
I'm moving to Dreamweaver from Notepad++, and while Dw does have many better features than Notepad++, there are a few that I'm really missing.
Is there a way to make the "Home" key on the keyboard ...
2
votes
0answers
179 views
How can I implement global hot key in Python .app on Mac OS X?
I'm currently modifying an app that was written by someone within my organization that no longer is able to maintain it. I am attempting to implement a system-wide global hot key that will simply ...
2
votes
1answer
341 views
how to unable the browser's 'ctrl+s' , because i will set it ,
I use jquery-hotkeys: http://github.com/jeresig/jquery.hotkeys
And this is my code:
$(document).bind('keydown', 'ctrl+s', function(){$('#save').click()});
but I cannot disable the browser's ...
2
votes
1answer
206 views
How can I automatically highlight a specific character in link text using JQuery + CSS?
I'm adding hotkeys to a web application in order to enable keyboard shortcuts for our CSRs to use, to reduce injury and increase calls-per-hour. I'm using an ASP.net UserControl to inject javascript ...
2
votes
4answers
905 views
Is there a way reformat code in FlashDevelop?
Is there a way to reformat code, i.e. force correct indentation in FlashDevelop as you can do with CTRL-SHIFT-F in Eclipse?
1
vote
3answers
54 views
Optimizing jQuery Hotkeys
So I have a web app which uses all the hot keys from A to Z.
Each hot key is used for a tab. So for example:
I have 20 tabs:
#tab1, #tab2, #tab3, #tab4 etc. All tabs get a class of .tabs.
So for ...
1
vote
2answers
52 views
How can I use jQuery hotkeys to load link?
I am sorry if I have missed it somewhere, but I have searched and searched for this and cannot find the code to make this work. I anticipate it is very simple, but not being familiar with javascript I ...
1
vote
1answer
67 views
Hotkeys to redirect to different page
I had a simple script that when you pressed C you'd be redirected to a different page, same for other letters.
However, every time you would press the button this would happen, even if you were typing ...
1
vote
1answer
195 views
From Java, capture mouse click and use as hotkey?
For keyboard, I'm using this to capture keyboard inputs: JIntellitype
This works extremely well, but I would also like to capture mouse events (clicks specifically) and use them as global "hotkeys". ...
1
vote
3answers
486 views
How to make work standard hotkeys (Ctrl+C, Ctrl+Z) in DataGridView Edit Mode?
I have simple .net application containing tabs and datargridviews on each tab. I've added main menu to the form and assigned hotkeys to menu items by using standard property:
editMenuItem = new ...
1
vote
0answers
369 views
Backspace Hotkey does not work in Richfaces Modal
I have added the following to my pages (to prevent users been able to use the backspace function throughout the site):
<rich:hotKey key="backspace" handler="return false;" disableInInput="true" ...
1
vote
1answer
230 views
hands position for Resharper hot keys combination [closed]
I'd like to start using ReSharper keyboard shortcuts but not sure how properly position my hands on a keyboard and which fingers to use for hot keys combinations as Ctrl + Shift + N or Ctrl + Shift + ...
1
vote
0answers
293 views
jquery hotkeys binding dynamically
I am using jresig's jquery hotkeys and it looks like it works for single hotkeys. The problem is I have a list of hotkeys from the db and I want to read them and assign the hotkeys dynamically. So I ...
1
vote
1answer
124 views
CommonNavigator View: Some Hotkeys don't work
I have a RCP application that reuses "org.eclipse.ui.navigator.CommonNavigator" to give us a project view. It works well, except for one thing: Some hotkeys (Ctrl+C, Ctrl+V, Delete) just don't do ...
1
vote
2answers
192 views
Cocoa - keyboard reference numbers for hotkeys; any docs detailing these?
I'm currently coding an app that has hotkey functionality, I've done some reading and was surprised to see it is all done via an old Carbon API. However, perhaps the biggest dilemma is I am unable to ...
1
vote
1answer
358 views
Binding keys with javascript while preventing the browser shortcut keys
I'm making a javascript game and need to bind a lot of keys to different functions. This I know how to do, what I need some help on is over-riding the shortcut keys for the browser. in other-words I ...
1
vote
1answer
712 views
Setting Mnemonics and Hot Keys for a JOptionPane Dialog
Is it possible to assign hotkeys and mnemonics to the buttons in a JOptionPane Dialog? I'd like to be able, in a JOptionPane generated message dialog with the options Yes, No and Cancel, press Y to ...
1
vote
1answer
83 views
Why does Visual Studio hog my other programs' hot keys?
I have found, consistently, that if I use something like Switcher (highly recommended), or Toastify (both are programs that rely on the use of global hot keys to work) that when Visual Studio 2008 has ...
1
vote
3answers
1k views
Proper way of creating a background hotkey with WPF C#? (preferably without using legacy code)
I need to be able to set up a background hotkey event for a WPF application. (by background I mean that the application in question might not necessary be in focus).
I know that with WinForms the ...
0
votes
0answers
12 views
Hotkey for scaling in photoshop
Is there a hotkey that "scale to the same scale that I just scaled"?
I was scaling a layer earlier today by a percentage in photoshop. I then dragged in another layer from another document and then ...
0
votes
2answers
22 views
visual studio. Hot key for pasting some specific text
I Find my self using jquery a lot in visual studio for my current project. Is there a way to add a hot key that will paste the guts of a selector on the screen? for example Ctr+shift+J will paste ...
0
votes
1answer
42 views
Activate button by key press in C#
I am making a simple form with a lot of buttons, and I want each button assigned with a letter(ex: q,w,t,y) and when I press that key on the keyboard, that button is 'pressed', like I've clicked on ...
0
votes
2answers
25 views
jQuery hotkeys triggering too fast: How to catch keypresses slower?
I'm using jQuery hotkeys plugin with the following code:
$(document).bind('keydown', 'right', function(){
console.log('fired');
display_info();
});
When the right button is ...
0
votes
0answers
42 views
Binding hotkeys from file in WPF
First thing's first, I'd like to apologize in advance for my English, it's not my mother tongue. =)
Now, "in medias res", I'm building a WPF app (.net 4) using MVVM pattern.
I'm trying to build a ...
0
votes
1answer
29 views
eclipse galileo - all hotkeys disabled
I've somehow managed to disable all hotkeys in eclipse Galileo running on ubuntu maverick, and I'd really like to enable them again. For example, if I want to rename a variable, normally I'd use ...
0
votes
1answer
49 views
Jquery UI and pluggin hotkeys conflicting scripts (or am I wrong?)
I'm currently trying to put into place Jquery UI to enable drag and drop feature on my site, as well as hotkeys for shortcuts. But there seems to be a conflict.
Check out my jsfiddle here:
...
0
votes
1answer
56 views
Jquery hotkeys - on keypress it does the action several times
I'm using the jquery plugin hotkeys for an event to minimize a div through a trigger click action. But it seems like the action is repeated several times. Here is some code
...
0
votes
0answers
37 views
SWT OSX hotkeys not working
I am using the following code to try and activate a hotkey for a menuitem, that is shown when right clicking on a StyledText box:
Shell shell = styledText.getShell();
// Create the menu
...
0
votes
1answer
33 views
How can I force Google Chrome to ignore built-in keystrokes and pass them to jquery
I'm developing commerce system. I want the system to be as lightweight as possible. I develop it on linux, of course. I want to achieve this:
I want to develop something like a desktop environment, ...
0
votes
1answer
90 views
Unbinding a JQuery hotkey inside the handler function
I am using JQuery with the hotkeys plugin and having trouble unbinding an event. Specifically, I am trying to unbind a keypress event within the method that has been bound to that keypress.
For ...
0
votes
5answers
152 views
.val(this.value); minus 1
I have few tabs with input on each tab. I am using and I set on each input the same class so I can carry the value from one tab to another, like this:
$('.group_input1').change(function(){
...
0
votes
2answers
119 views
Javascript -> Hotkeys -> Disable for input fields
okay so I have the hotkey working just can't make it stop
$(document).keypress(function(e){
if(e.which == 13){
//Enter key is press do what you want
}
else if(e.which == 67 || ...
0
votes
1answer
101 views
jquery.hotkeys.js replaces input field with .bind
I'm using jquery.hotkeys.js and mapping my keybinding in the following fashion:
$(document).bind('keydown', 'i', function() {
$("input#foo").focus()
});
Yet, after calling focus (in ...
0
votes
1answer
16 views
What's the easiest way to add hotkeys to a webpage?
I want to add some hotkeys to my webpage, such as using j/k as page up/down, as this web page did: http://www.theatlantic.com/infocus/2011/07/tour-de-france-2011---part-1/100105/
What's the ...
0
votes
1answer
113 views
Bind Ctrl and Ctrl+key by using jquery.hotkeys.js
I'm using jquery (latest version) together with jquery.hotkeys.js.
What I would like to acchieve is:
I would like to bind Ctrl+V (ok that is an easy one) but in addition I have to capture the Ctrl ...