Ctrl-Alt-CapsLock key remapping not honored

I have the Ctrl-Alt-CapsLock keys remapped on my Win XP system (using 
MS PowerToys), but Illustrator (14.0) insists on using the original
positions of these keys.  Anybody know how can I make Illustrator use
the remapped positions with the built-in shortcuts, for example, when I press the
key labelled CTRL, I want it to produce the ALT functionality (as it does in every other
program I ever installed).

As a bi-platform user of Adobe software, I know exactly why you'd want to interchange the positions of the left Alt and Ctrl keys.
Unfortunately, when you use post-driver software (that works by intercepting keyboard interrupts), you put yourself at the mercy of "rogue" programmers -- such as those apparently hired by the Adobe Illustrator engineering department -- who have their own peculiar ideas about how things like this should work.
My solution might sound radical (and it's not cheap), but it works: Buy a keyboard that enables remapping at the firmware level. An example would be the Avant keyboards -- the descendants of the Northgate OmniKey series -- that not only give you key remapping but also some rudimentary macro programming capabilities. They even come with extra keycaps and a keycap removal tool so that you can, for example, keep the labeling correct on your remapped Ctrl and Alt keys. They use Alps mechanical rather than membrane-type key switches, which is great for someone like me (who does a fair amount of writing and loved the original IBM keyboards)... but I do understand that is a matter of personal preference.
As an added bonus, your key remaps and macros travel with the keyboard. Plug it into another computer, and all of your customizations are right there, ready to go.
I'm sorry I don't have an easier answer for you.

Similar Messages

  • Photoshop CC for PC - ctrl-alt-arrow key Does Nothing

    I installed Photoshop CC on a new PC, and the ctrl-alt-arrow keystroke does nothing. It used to shrink the marquee around pixels and move the selection by 1 pixel. Now it does nothing. Using shift-ctrl-alt-arrow shrinks the marquee around pixels and moves the selection by 10 pixels, which is what it's supposed to do. Any help is appreciated.

    I'm re-reading your posts, and I'm guessing you started having this problem when you installed on the new PC.
    What I'm thinking is that unchecking the hotkeys is not enough, the hotkey utility may be still be "trapping" the ctrl-alt-arrow keystroke.
    I decided to check this for myself.  First I open the task manager in Windows 7. and saw a process called "igfxHK.exe"  I ended that process and started Photoshop and then tried ctrl-alt-arrow and to my surprise, that does work.  igfxHK = Intel Graphics HotKey.
    Now the next trick is to block it from loading in the first place. I guess you could try to move or rename it. I don't want to ask you to adjust entries in the Registry yet. I have to go in a few minutes.
    From this article: Ctrl+Alt+Arrow key no longer working — Photoshop for Windows — ClearPS.com
    "The good news is that (as far as I can tell) hkcmd doesn't appear to be necessary as my graphics drivers are still functioning fine after I've removed it (I went into regedit, searched for hkcmd and deleted all entries). From searching online I see that hkcmd is known to conflict with other apps, so it seems that it's likely the cause rather than PhotoShop. Why PhotoShop and hkcmd suddenly started to cause conflicts after months of proper functioning, I don't know."   hkcmd is like igfxHK.
    Gene

  • Always Script Editor ... Alt Gr key does not work

    Hi,
    With IE6 in SQL Script Editor
    Alt Gr Key does not work.
    For instance, I cannot type ||
    In fact it's a copy-paste from SQL command (which works well)
    Note Script Editor does not work with Firefox.
    Thank you for any information
    Regards
    JRD120

    You might try this:
    Remove any USB device except mouse/keyboard
    Perform a PRAM-reset (hold ALT-CMD-P-R until you've heard the starting chime 3 times)

  • Bootcamp perfect - now need ctrl-alt-del key map

    Hi Guys,
    Installed bootcamp, XP SP2 on MBP works perfectly, joined local Windows domain - no worries - now on boot of course it wants the infamous cntl-alt-del key combo - I've tried just about everything but no luck.
    In the end plugged in external PC usb keyboard, got in and turned off the requirement to enter ctrl-alt-del in windows as a work around.
    Any ideas on how to map the MBP keyboard to work? Thanks all.

    Ctrl Alt Del on Windows XP:
    After installing,
    1) go to Start>Run
    2) Enter "remapkey" (witout quotes)
    A nice GUI utility pops up to let you remap keys on your keyboard. You can use it to remap the delete key. I suggest using the Right Command key.
    After saving, reboot and you'll be able to use Ctrl-Alt-(Right Command) to do a Ctrl-Alt-Delete and logon to Windows domains and other useful things.

  • Alt+mnemonic key is not working properly for Menu Items

    Assume there are two menus , File Menu with mnemonic Alt+F
    and Save Menu with mnemonic Alt+S. File Menu contains the
    menu items like PageSetup with Mnemonic S. Save menu has
    the menu item Properties with Mnemonic P.
    Pressing Alt+F opens the File Menu which has the menu item
    PageSetup.Pressing S activates the PageSetup menu item.
    Similarly Pressing Alt+S opens the Save Menu which has the
    menu item Properties. Pressing P activates the Properties
    menu item acion. But Pressing Alt+P also activates the
    Properties menu item action(it is not the desired behaviour)
    Pressing Alt+Mnemonic key has to open only the Menus.It
    should not consider the menu items.
    STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
    1.Press Alt+F
    2.File Menu is invoked
    3.Press S
    4. Invokes the menu item action
    5. Press Alt+S
    6. Save menu is invoked
    7. Press P
    8. Invokes the menu item action
    9. Press Alt+P
    10. Invokes the menu item action
    EXPECTED VERSUS ACTUAL BEHAVIOR :
    Pressing of Alt+Mnemonic key invokes the menu and also menu
    item actions. If the same mnemonic is present in the Menu
    it is giving the priority to Menu only.Pressing of Alt key
    alone does not hiding the pull down menu
    Expected Result;
    Pressing of Alt+Mnemonic key has to list out the pull
    down menu only.It should not consider the menu items with
    the same mnemonic. If Alt key alone is pressed the pull
    down menu has to hide.
    REPRODUCIBILITY :
    This bug can be reproduced always.
    ---------- BEGIN SOURCE ----------
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class JavaBug extends JFrame
    public JavaBug()
    // Create menu bar
    JMenuBar menuBar = new JMenuBar(); // Create menu bar
    setJMenuBar(menuBar); // Add menu bar to window
    // Create first option on menuBar
    JMenu m1 = new JMenu("File");
    m1.setMnemonic('F');
    JMenuItem m1o1 = new JMenuItem("PageSetup");
    m1o1.setMnemonic('S');
    m1o1.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    System.out.println("File/PageSetup was selected");
    m1.add(m1o1);
    // Create second option on menuBar
    JMenu m2 = new JMenu("Save");
    m2.setMnemonic('S');
    JMenuItem m2o1 = new JMenuItem("Properties");
    m2o1.setMnemonic('P');
    m2o1.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    System.out.println("Save/Properties was selected");
    m2.add(m2o1);
    menuBar.add(m1);
    menuBar.add(m2);
    this.setTitle("Mnemonic Bugs");
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    setSize(400,250);
    show();
    public static void main(String[] args)
    JavaBug bug = new JavaBug();
    Suggestions welcomed
    punniya

    I tried your code, but didn't get your "bug" using jdk 1.3 on windows 2000 (at my school).
    Kind regards,
    Levi

  • Alt Gr + key combination not working in FF?

    When i wont to type for example "@" i cant because in FF combination of Alt Gr key and V are not working.
    Why the combination is not working and how i can fix that?

    I had the same problem, in my case the problem was the Firewall (COMODO). I set the Firefox program without permission to access to the keyboard, the most of keys worked perfectly but ALTGR+Any didn't work. Try to allow access to the keyboard to firefox program if you has any firewall with proactive defense.
    I hope this solve your problem.
    Regards,
    Blackmoon

  • X not terminated by ctrl+alt+backspace

    Whenever I hit ctrl+alt+backspace, it does not kill X. I have the serverflag DontZap set to false, but it still won't work.

    scv5 wrote:
    i thought you could put this in your xorg.conf and it would work? (not able to test right now)
    Section "ServerFlags"
    Option "DontZap" "false"
    EndSection
    In addition you need to add either:
    <merge key="input.xkb.options" type="string">terminate:ctrl_alt_bksp</merge>
    to the keyboard fdi file or run
    setxkbmap -option terminate:ctrl_alt_bksp
    as is indicated in the wiki.

  • Ctrl Alt Delete

    Some times the Computer freezes, but I can still use the mouse. I have tried wating for the processor to catch up but that does not seam to be the issue. When the freeze acures The Ctrl-Alt-Delete menue will not appear. The only thing I can do is hold down the power button for an unsafe shutdown. I have ran a virus scan and come up with nothing. What should I do when this problem acures. Could it be a problem with the OS? I am at a total loss. please help.

    Try turning off your computer then restarting it with the little One Key button next to the power button. If some windows files are corrupt, they will be fixed by this. You just have to follow the instructions on screen.
    Ideapad Y530, P8400 @ 2.26 GHz 320 gb HDD, 4 gb RAM, nVidea 9500M 512mb VRAM.

  • Change Ctrl+Alt+Backspace to something else

    Hi
    Is there any way to change the Ctrl+Alt+Backspace key combination in X to something else, e.g. Ctrl+Alt+Windows+Backspace?
    Note that I don't want to disable the "zapping" behavior by changing DontZap, but simply change the combination.

    This _looks_ like it, but doesn't really make a lot of sense:
    xmodmap -pke | grep BackSpace
    keycode  22 = BackSpace Terminate_Server BackSpace Terminate_Server BackSpace Terminate_Server
    The first keysym is used when no modifier key is pressed in conjunction with this key, the second with Shift, the third when the Mode_switch key is used with this key and the fourth when both the Mode_switch and Shift keys are used. The last four are not used in any major X server implementation.

  • GNOME on Ctrl Alt F7

    I am pretty sure the topic has already been raised in this forum. But I do not find the correct search terms.
    After one of the updates this year the GNOME desktop is now accessible via CTRL+ALT+F7. I have three terminals configured in inittab and the GNOME desktop used to be at CTRL+ALT+F4. Now the F4 to F6 keys are not in use any more. I searched for some time to swtich back GNOME to CTRL+ALT+F4 but could not find a solution. Can anyone direct me to the correct topic or provide a solution?
    Many thanks and best regards
    Martin

    try disabling this patch from our gdm packages.
    http://repos.archlinux.org/wsvn/package … hack.patch

  • HT201612 how to use ctrl+alt+delete to restart with boot camp

    how to use (ctrl+alt+delete) to restart?

    You press all the keys (ctrl+alt+delete) at once
    Some information
    In a personal computer with the Windows operating system, Ctrl-Alt-Delete is the combination of keyboard keys that the computer user can press at the same time to terminate an application task or to reboot the operating system (have it shut down and restart itself). In Windows 95 or any later systems, Ctrl-Alt-Delete brings up a window that allows a user to see the status of all currently running programs and to terminate any of them, and also offers the options of shutting down, restarting, and so on (the specific options vary slightly with the particular version of windows). In Windows 95 or 98, if Ctrl-Alt-Delete is pressed a second time or twice in a row quickly, the operating system closes all programs that are running and then restarts.
    When the operating system seems to hang suspended while waiting for an application program to continue, a user is also left without a way to regain control of the system. The Ctrl-Alt-Delete key combination allows the user to terminate the "hung" application and, if that doesn't work, to reboot the system. The system can also be restarted using the mouse to select Start-->Turn Off the System-->Restart. However, Ctrl-Alt-Delete sometimes works when the menu option doesn't.

  • Press CTRL ALT DELETE to log on

    I have installed windows server on macbok pro and after restart, first time I am logging in but it asks to press CTRL ALT DELETE keys to log on. I have tried all possible key combinations on macbook but nothing working. I have found a solution on internet, installing remapkey.exe but problem is how can I install untill i am able to log into my windows?? Any solution please?

    Is this a BootCamp or VM?

  • Icgym is compressed press ctrl+alt+d​el

    icgym is compressed press ctrl+alt+del
    windows is not start.(win7)
    ı need help
    (compaq 6720s notebook)

    It seems that you are experiencing an error similar to the bootmgr is compressed error message and I suspect the steps will be the same.
    Was anything done prior to this happening (e.g. compressing the hard drive, updates, etc.)?
    Do you get the error after the HP logo, but before Windows is loaded?
    Do you have a copy of a Windows 7 disk? If so, it will have some tools on the disk that will help with correcting this issue. If not, a recovery may be necessary.
    Does the behavior match any of the links in this post by SpiritX on the Microsoft Ansers forums?
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Ctrl/Alt Keys not Working in Parallels

    Hi,
    I'm running Illustrator CS6 using Parallels Desktop 8 and Windows 7. It appears that the ctrl/alt keys do not work. Has anyone found a solution? I've tried resetting my preferences and restarting my computer. Any help would be greatly appreciaed.

    Although this is an old thread, I also seem to be having the same sort of issues with Illustrator CS2 in Snow Leopard running under Parallels Desktop 9.
    Re. the proposed solution, there does not seem to be a 'Virtual Machine -> Configure -> Options -> Advanced -> Optimize modifier keys for games' option in Desktop 9 - or I've not found it.
    I will pursue this in the Parallels forums, but if anyone here has found a solution, I'd be interested to hear it.

  • Hp t510 right alt key mapping not working with ctrl + s

    Using the HP t510 to launch a xendesktop session via storefront. We have a mission critical application that uses the ctrl + alt + s hotkey to secure itself. The left alt key with ctrl + s is working as it should but the right alt key does not. When testing in the win7 on screen keyboard the right alt and ctrl stay lit up. When hitting the S key after depressing both the  right alt + ctrl (right or left ctrl doesn't matter) the alt keys disappear from the on screen keyboard as if they were no longer pushed. They hotkey combination never makes it to the application and it does not secure itself.
    I've tested this same workflow on an ASUS thin client, desktop, and laptop hardware with no issues. It does in fact seem to be some hotkey mapping the HP device has baked into it using the right alt key.
    Has anyone seen any issues that even closely mimic this? I've seen some for ctrl + alt + del but their fixes don't work for this specific issue.

    Hello xXenStatex,
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand that the alt key mapping is not working with ctrl + s on your Thin Client, and I would be happy to guide you towards a resolution!
    I am sorry, but to get your issue more exposure, I would suggest posting it in the commercial forums, since this is a commercial product. You can do this at:
    http://h30499.www3.hp.com/t5/Workstations-Thin-Clients/bd-p/bsc-635
    I hope this helps!
    Regards
    MechPilot
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks” for helping!

Maybe you are looking for

  • Date field in fm

    hi , i do a FM  and i wont to now  how i do in import tab  field for date  but <b>from</b> .... <b>to</b> ... in alv its not problem ,what is the best way? Regards

  • External Hard Drive is read only?? how do i change this?

    ive just gotten a new external hard drive which i use a giant usb pretty much, only problem is when i drag files into it to copy it tells me that "untitled" cant be modified.. also when i check its info im told that it is read only... how do figure o

  • How can I open Firefox in safemode?

    My roommate had a Ransom Ware page pop up on her HP Envy Win8 desktop computer. She immediately shut down Firefox. Firefox is set to re-open tabs when opening, and that tab is showing up. When she tries to close that tab, it opens and asks "Do you wa

  • Send XML as acknowledgment from BPM

    Hi  Experts I have scenario where our XI box will receive an XML, so whenever we receive an XML XI should send back another XML as an Acknowledgment. Is there any way I can send an custom XML format as an acknowledgment? In BPM Send step I could see

  • What app will let me organize multiple pdfs so I can put song lyric pdfs in the order I sing them

    I want to use my iPad to view my song lyrics in pdf form as I perform. I'd like to be able to customize the order in which the pdfs are stored so that I can have a different set of songs for different shows. I also want to just swipe from song #1 to