Please consider adding a modifier key with click for rating change.

Or provide us with an option to add the modifier key, as is possible in Photoshop.
Once I had hundreds of photos selected to drag into another file, but I clicked near the bottom and changed all the ratings to 1 star.
At that point I really could have used an UNDO option, like Microsoft Word.
Either option -- modifier key or undo --would be solutions to this time waster.
(This happened on a Apple Powerbook G4 with Panther 10.3.9, but could happen on a PC as well.)

Holly,
The Option modifier already exist as a Preference although it doesn't apply if using the mouse which is what you appear to be doing. Forcing the modifier on mouse users would defeat the purpose of the mouse and therefore I doubt that it would find widespread favor. As for Undo, well that already exists in the form of Cmd/Ctrl+Z just like Photoshop.

Similar Messages

  • Modifier keys with multiple keyboards / keypads

    I've got a weird one. I'm running 10.6.2 on a Mini with a Kinesis Freestyle Mac keyboard. I also just got an Ergodex DX1 input system with the Keyjack Mac software. It's amazingly cool, but there's an issue that the company says is an OSX bug/feature: the modifier keys on my main keyboard don't affect keys I've programmed on the DX1. For example, I have keys programmed as the cursor keys. However, I can't get cmd-up, shift-up, etc, using the Kinesis command and shift keys.
    This is a pain and required me to waste the limited DX1 keys to have its own modifiers. Is there some way around this? I've read many threads about weird behavior with modifier keys and multiple keyboards, but haven't seen this specific issue.
    Thanks for any help!
    David

    Something similar was asked before where the person wanted to use multiple keyboards ("standard" keyboards, but one for each hand.) It was found that the modifier keys worked only for that device. (e.g.: shift on left keyboard did not affect shift status on right keyboard.) It appears to be a limitation with most modifier keys on any keyboard, PCs included. The way most keyboards work, (at least most USB keyboards,) a code is sent with the appropriate "letter", not which key(s) are press. IOW, there's a code for "s" and "S", but not "shift-and-s". Unlike Caps Lock, the Command key is more like the shift, control, option keys, which do not have separate "codes" of their own.
    So unless someone else has some other idea to try, I think you're out of luck.

  • Caps lock key, adding a modifier key to activate it

    Before OS 10, there was software that could make caps lock not work unless a chosen modifier key was also hit at the same time. I cannot find this for OS 10.
    I did find some ways to do this using Terminal but after 20 years of using a mac without touching command-line interfaces directly, I resist that.
    Any suggestions?

    Thanks! That really worked
    Although, I found my Caps Lock a little stiff, so I removed the metal stabilizer (saw no real use for it).
    I hope nothing happens without it!
    Thanks again

  • Feature request: modifier key to enable snap when working with lines

    In order to connect lines and close shapes more quickly, I would like to use a modifier key to get a point to snap. Otherwise it's an extra step to use keyboard shortcut or clicking the toolbar icon (which doesn't always display). I would like to close the shape as quick as possible.
    Modifier keys already exist for duplicating items, and keeping them vertical/horizontal, so why not add this using one of the unused keys? Thanks.

    Adobe - Wishlist & Bug Report
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Impossible to put a modifier key in Voiceover utility / Commanders

    In voiceover utility / Commanders, I enable the numpad commander. And I would like to add a modifier key like command for instance for this function. On the right, there's a popup menu that allows me to select a modifier key. BUT after selecting command and closing the voiceover utility, my changes are not taken into account and 'm back to "no modifier".
    It is just like it doesn't keep in the prefs file my changes.
    Any idea? Looks like an OS bug....

    It sounds like a hosed Preference file.
    Unfortunately, not having a numpad, I can't check up, but you could try getting rid of all the voiceover plist files from ~/Library/Preferences, then restarting and resetting everything.
    At that point, it's probably a good idea to save all the .plists to an external drive such as a USB key.
    Good luck!
    Archie

  • Using scroll wheel with modifier key to zoom out is not working

    I can't zoom out with the magnifying tool selected in all programs of the CS3 suite using the option key on a Mac. I can zoom in with no problem. I've been trying to figure this out for "8 hours" now!!!
    I do have this checked in the system preferences and Photoshop preferences. I don't think this is considered a keyboard shortcut but I do have universal access checked and zoom out checked in the system preferences.
    I searched this site and all of the internet looking for answers but can't seem to find much. I appreciate any help you can give. I'm way behind on my work today.
    Thank you!

    The default key for scrolling zoom is not Command but Control. To change this, go to System Preferences —> Universal Access and click on the Seeing tab. In the Zoom pane, click on the Options button, and in the sheet that drops down, select the text box at the bottom, highlight the character there, then press the modifier key you prefer.
    HTH
    Archie

  • Since Mavericks, the scroll-with-modifier-key-to-zoom functionality often fails, and I have to deselect it and reselect it in the accessibility pref-pane to get it working again.

    Since Mavericks, the scroll-with-modifier-key-to-zoom functionality often fails, and I have to deselect it and reselect it in the accessibility pref-pane to get it working again.

    Take it to your local Apple Store or AASP, it's covered by a 1 year hardware warranty. If you have AppleCare then give them a call but I'm pretty sure they will advise the same. If you have not purchased AppleCare yet please do, this will extend the warranty to 3 years however it MUST be purchased within the first  year of ownership. Let it go 366 days and you are out of luck. AppleCare will also include telephone support too.
    Good luck.

  • Problem with modifier keys in InputEvent

    I am trying to override DefaultCellEditor.isCellEditable() such that only unmodified double-clicking on my table cells will start edit. Naively, I thought this would be simple: cast the received EventObject to, say, an InputEvent and then query its modifiers. However, although calling toString() on the event object clearly shows the modifier key(s) in the event, getModifers() or getModifiersEx() always tells me there weren't any!!!
    Here is a little SSCCE which shows the problem (I hope -- I'm on a Mac, so YMMV; I sure hope not). We have a table with one row and three columns; only the middle column is editable. This column has a custom editor defined on it, which overrides DefaultCellEditor.isCellEditable() to check whether modifiers are down.
    public class AltDoubleClick extends JFrame
      private class MyDataModel extends AbstractTableModel
        private String[] values =
          {"a string for col 0", "a string for col 1", "a string for col 2"};
        public int getRowCount()
          return 1;
        public int getColumnCount()
          return values.length;
        public Object getValueAt(int row, int col)
          return values[col];
        public boolean isCellEditable(int row, int col)
          return col == 1;
        public void setValueAt(Object value, int row, int col)
          values[col] = (String) value;
      private class MyCellEditor extends DefaultCellEditor
        MyCellEditor()
          super(new JTextField());
        public Component getTableCellEditorComponent(JTable table, Object value,
                                                     boolean isSelected, int row, int column)
          if (value != null && value instanceof String)
            ((JTextField) editorComponent).setText((String) value);
          else
            ((JTextField) editorComponent).setText("");
          return editorComponent;
        public boolean isCellEditable(EventObject e)
          if (e instanceof MouseEvent)
            MouseEvent me = (MouseEvent) e;
            System.out.println("modifiersEx is " + me.getModifiersEx());
            System.out.println("modifiers is " + me.getModifiers());
            System.out.println(me.toString());
            return me.getModifiersEx() == 0 && me.getClickCount() == 2;
          return super.isCellEditable(e);
      public AltDoubleClick()
        Container c = getContentPane();
        table = new JTable();
        table.setModel(new MyDataModel());
        table.getColumnModel().getColumn(1).setCellEditor(new MyCellEditor());
        c.add(new JScrollPane(table));
      private JTable table;
      public static void main(String[] args)
        javax.swing.SwingUtilities.invokeLater(new Runnable()
          public void run()
            AltDoubleClick test = new AltDoubleClick();
            test.setSize(500, 500);
            test.setVisible(true);
    }When I run this and double-click the middle cell with a modifier down, I get the following output:
    modifiersEx is 0
    modifiers is 24
    apple.awt.SelectionMouseEvent[MOUSE_PRESSED,(231,5),absolute(233,67),button=1,
    modifiers=⌥+Button1+Button2,clickCount=2] on javax.swing.JTable[...]or, alternatively:
    modifiersEx is 0
    modifiers is 20
    apple.awt.SelectionMouseEvent[MOUSE_PRESSED,(202,3),absolute(204,65),button=1,
    modifiers=⌘+Button1+Button3,clickCount=2] on javax.swing.JTable[...]As you can see, despite the fact that modifier keys are being printed out by the toString() call (⌥ and ⌘ are the alt/option and apple keys, respectively), I get no indication from getModifers() or getModifiersEx() that they are down!!!
    Can anyone help me see through this confusing mess?

    Walter Laan wrote:
    Read the friendly manual. It explicitly tells you not to use == to check stuff and it should be pretty clear that it won't be zero for a mouse button down event.Good point, and I ought to have been more clear in my OP. I initially wrote it as they suggest, but found that wasn't working either. (This was work that I did in two parts with a gap of a couple of months in between, so I'd forgotten that I had tried that.) However, the return values from getModifiers() and getModifersEx(), in my output statements, shows that there are no modifier bits set -- so no point testing for them:
    * When I double-clicked with the alt/option key down, getModifiers() gave me 24, which is simply BUTTON_1_MASK + BUTTON_3_MASK (which isn't even correct -- I was only using the left mouse button).
    * When instead I held the apple key down, getModifers() gave me 20, which is BUTTON_1_MASK + BUTTON_2_MASK (also not correct -- again I was only using the left button).
    * getModifiersEx() in both cases gave me 0.
    I realise that some of this behaviour (the incorrect mouse buttons info) is down to Apple's runtime, but if the correct modifier is in the apple.awt.SelectionMouseEvent object (as we can see in the toString() return value), then surely it should be available from getModifers() or getModifiersEx()!

  • Modifier Keys suddenly not working with Numberpads

    I favor the use of a numberpad and as such i have been using a third party USB Numberpad.  I also have a Apple wired keyboard that comes with the number pad.
    All these while, the modifier keys (shift, alt, ctrl) works with the numberpad and the numberpad section of the apple keyboard.  Somehow, recently, not sure when, it no longer works.
    I've tried to reset default on the modifier key section but it just doesn't work... This is really frustrating.  the only thing i remember installing lately is "bettertouchtool" and buying a magic mouse. 
    Bettertouchtool is not usually running unless i choose to run it, so i'm not sure how that affecs it, not am i sure if totally removing it via a third party app helps.
    Appreciate HELP! PLEASE!

    i am having the same problem.  It just started a few days ago.  Im thinkin its a problem with the most recent update.  Im goin to contact apple to let them know.   I'll post again when i hear something.  If anyone figures it out before then please let us know!

  • I cannot sign in.  "This Apple ID has not yet been used with the iTunes Store.  Please review your account information."  I click "Review", next message "You must turn on cookies to continue.   Cookies must be enabled if you want to create or edit.. etc."

    I applied and received an upgrade code to Redeem Mountain Lion for my new MBP. 
    I get this message when I try to Sign in to the App Store after entering the redemption content code, and also if I just try to "Sign In".   The first part of the error is true - I haven't used the AppleID with the iTunes store.  
    I received the upgrade code using this same AppleID, so I don't think I can use a different AppleID.
    I also tried to re-create this appleID...(it was one suggestion I saw for this issue) It doesn't let me since the ID already exists...
    The error is:
    "This Apple ID has not yet been used with the iTunes Store.  Please review your account information."  I click "Review", next message "You must turn on cookies to continue.   Cookies must be enabled if you want to create or edit.. etc." 
    It's clearly not a cookie issue..   Stuck...

    The first part of the error is true - I haven't used the AppleID with the iTunes store. 
    Try here >  Using an existing Apple ID with the iTunes Store and Mac App Store
    received the upgrade code using this same AppleID, so I don't think I can use a different AppleID.
    Correct.
    It's clearly not a cookie issue..
    As for cookies. Quit the App Store. Now open the Finder. From the Finder menu bar click Go > Go to Folder.
    Type this exactly as you see it here:   ~/Library/Cookies
    Click Go the move the   com.apple.appstore.plist   file from the Cookies folder to the Trash.
    Relaunch the App Store.

  • When opening my Outlook 2010 with new added e-mail account with Exchange Server, I have to click manually on my standard e-mail account for checking mail

    When opening my Outlook 2010 with new added e-mail account with Exchange Server supplied by my employer, I have to click manually on my standard e-mail account for checking mail. Do I have to upgrade my Microsoft Office 2010 or how can I make my Outlook
    2010 check all my four e-mail accounts without manually click on my accounts?
    Sincerely
    Ketil Hothorp

    Hello Ketil,
    Good Day...
    Seems to be the Issue is Syncing emails, now I would recommend you to Remove and Add the Account and try and check if the emails are getting synced automatically.
    Hope this is with Single User. If it is with Multiple Users then we need to check the permissions assigned.
    Regards,
    Praveen

  • Zoom:Use Scroll wheel with Modifier Keys to Zoom

    Help! Since the 10.6 update from 10.4.11, I can no longer zoom in and out by holding Command while moving scroll ring on my Kensington Expert Mouse. I have tried other modifier keys to no avail.
    I suspect a conflict, but do not know where to fix it. When in Firefox 3.5.2., Command plus scroll ring zooms the active window nicely. Any ideas or should I provide feedback to Apple or both? Thanks! DJ

    The default key for scrolling zoom is not Command but Control. To change this, go to System Preferences —> Universal Access and click on the Seeing tab. In the Zoom pane, click on the Options button, and in the sheet that drops down, select the text box at the bottom, highlight the character there, then press the modifier key you prefer.
    HTH
    Archie

  • Trying to change reset my Apple ID as I can't remember it, however it is sending an email which says invalid link or a list with the option to change password which can't be clicked on? Can anybody please help?

    Trying to change reset my Apple ID as I can't remember it, however it is sending an email which says invalid link or a list with the option to change password which can't be clicked on? Can anybody please help? Going around in circles! Grrrrrrrrrrr

    Is this your machine or the company's?  Machines that came with Snow Leopard or earlier installed come with system and software install disks that can be used to reisntall the iApps that came with the machine orignally. 
    If this is your machine and it came with Snow Leopard or earlier installed the disk will look slimialr to one of these:
    If it is the company's machine see if they have the disks.
    Do a custom install and then use Software Update to update iPhoto to the highest version that is available.

  • Google Sheets: A browser error has occurred. Please hold the Shift key and click the Refresh button to try again.

    Since upgrading to OSX Yosemite last night, I get this error message when I open spreadsheets previously created in Google Drive: "A browser error has occurred. Please hold the Shift key and click the Refresh button to try again." Following these instructions does absolutely nothing.
    Word google docs open fine, as do spreadsheets that aggregate responses from a form and a select few spreadsheets; however most other spreadsheets display the same error message.
    I've tried:
    opening in Google Chrome - uninstalling and reinstalling Google Chrome: same issue
    opening in Firefox: same issue
    opening from sheets.google.com: same issue

    moving tab doesn't work.

  • I get this message when I try to open my google shared docs this week: "A browser error has occurred. Please hold the Shift key and click the Refresh button to try again." - but that click/refresh doesn't work either. What's up?

    # Question
    I get this message when I try to open my google shared docs this week: "A browser error has occurred. Please hold the Shift key and click the Refresh button to try again." - but that click/refresh doesn't work either. What's up?

    The backend end is in serious pain....on many levels.
    Try this: Connection Problems Form

Maybe you are looking for

  • Dvd drive can't read DVD's

    hi all, My problem is the dvd drive in my laptop. It will not read dvd's commercial or burnt variety, curiously it reads cd's just fine. So far email tech support has been useless. I wrote them explaining what steps I had tried to fix the problem suc

  • Plz help me solving following issues

    Hi SD experts, Plz help me solving following issues 1) What do you mean by POD(proof of delivery) what is the use of pod? What are the con figuration you done in your project? 2) When I am punching order after entering data like material No and quant

  • Startx errors

    kde4 works when i hit startx as root but as a normal user it doesnt and i get the following errors: (EE) Failed to load module "record" (module does not exist, 0) could not init font path element /usr/share/fonts/TTF, removing from list! could not in

  • Picking up Random files with ODI

    I have a directory into which an application dumps random files, The file might be randomly named but they have the same format. I need to be able to read the file and check if its the same schema, if so then load it into a common table... How do i g

  • How to change the bash prompt?

    When I open a shell, I get as prompt: user@myhost:~$ Maybe it comes from my former Debian installation (I kept /home when installing Arch), because: $ echo $PS1 ${debian_chroot:+($debian_chroot)}\u@\h:\w\$ When I su to root, I get: bash-3.2# What do