Alt left selection inconsistency

I will demonstrate this by an example:
"I like ice cream."
Problem one
If I place the cursor just to the right of "ice" and presses in sequence:
shift+alt+left then shift+left
"_ice_" becomes selected instead of the expected "_ice".
When done the mirrored way: cursor left of "ice" and pressing
shift+alt+right then shift+right
"ice_" becomes selected which I would expect normally but is totally inconsistent with the "_ice_" selection described above.
Problem two
If I place the cursor just to the left of "ice" and presses
shift+alt+right then shift+left
"_i" becomes selected instead of the expected "ic" in "ice".
When done the mirrored way: cursor right of "ice" and pressing
shift+alt+left then shift+right
"ce" is selected just as expected.
Summary
After selecting anything with shift+alt, shift+right works as expected as in any other program. However when shift+left is pressed after a selection, Pages behave inconsistently with other Apple apps such as Safari and Finder. This unexpected behavior can get me quite upset at times because I use that kind of selection all the time in my work flow when editing text. I have experimented quite a bit with it and these problems seem to be consistent.
Is it a bug or is it a "feature" that can be disabled?
Please confirm if you can recreate this or if it works differently for you.
I also noted the same problem in text fields in Keynote which I would expect as they are closely related.
Any help is appreciated.
Update: the same problem is discussed in this thread:
https://discussions.apple.com/message/25443382#25443382
They conclude it is a bug.
Update: It seems that Apple is aware of the bug.
For others experiencing the same problem, a functioning but awkward work around is to use the commands ctrl+b and ctrl+f instead of arrow keys when selecting:
http://support.apple.com/kb/PH15393

If Firefox doesn't add a file extension then you need to add a valid image file extension (.jpg) yourself.

Similar Messages

  • Alt shortcuts not working for alt-left/right or for é, í etc

    Hi guys,
    I've had this problem for a while now… Essentially, the issue lies in the alt-shortcuts for left and right where one is usualy able to 'word jump', and the creation of accented characters like é and í using the alt-e shortcut. All other alt functions appear to work fine for the moment. The alt-left/right shortcut still works when shift is held down, and highlights all the characters that have been passed over, as it should. The output for alt-e is completely blank, and the alt-left/right output is nothing, unless shift is also held.
    I have a British English MacBook Air keyboard on Mountain Lion, and I have set it to that layout, and I regularly switch between this and greek for scientific formulæ. I've fiddled around with language and input settings trying to get it to work again to no avail, and there are no shortcuts programmed to that to my knowledge. I have checked on a guest account and it seems to be account specific. Ideally I'd like to keep this account without migrating everything over - does anyone have any ideas with regards to how to track down where the problem is?
    Thanks in advance to any responses!

    If only alt + e is not working, double check system preferences/speech to make sure it has not been set as a trigger for text to speech or speech recognition or whatever.

  • Alt + Left-Click not saving

    The Alt+Left-Click shortcut isn't working. It saves the image as "File *." The asterisks being the name of the image. When I try to open the image, it says no preview available.

    If Firefox doesn't add a file extension then you need to add a valid image file extension (.jpg) yourself.

  • How to disable Alt-Left Click windowing?

    So, I set up my Magic mouse to take advantage of the "highlight-paste" feature of X11 by having a gesture (click 3 fingers on the mouse) on the mouse do the Alt-Left Click to paste what I've just highlighted.  This gesture is easily done on accident, and now I've discovered this annoying windowing feature.  If I move to a new window and accidentally click with 3 fingers, it causes the previous program I was in to disappear.  I can quickly return to it with a Command-tab, since it did not quit the progrm, but it is annoying and I want to turn it off.
    I've looked in the keyboard shortcuts in the system preferences - but those deal with keyboard-only shortcuts, not keyboard+mouse actions.  I can't find it in the Mouse section of the Sys Pref, either. 

    This question has been asked before. Once again, you can NOT do this using pure java. This could be done in Windows using JNI and a keyboard hook or interfacing with the screensaver API perhaps.

  • Disable switch to another virtual console with Alt-Left/Right

    I'm a Fish shell user, and the Alt-Left/Right keys are very useful for me. But in the virtual terminals those shortcuts are captured and cause a switch between the different terminals (like Alt-F1, F2 etc). My question is, how can I disable that Alt-Left/Right behaviour, since Alt-F1, F2... is more than enough for me.

    SanskritFritz wrote:
    I got one step closer to my goal:
    dumpkeys > my_console_keymap.txt
    vim my_console_keymap.txt # deleting the lines with Decr_Console and Incr_Console
    loadkeys my_console_keymap.txt
    really turns off the switching of consoles, but fish still doesnt get the Alt-Left|Right keys. At least nothing happens, so the situation got better, but I wonder how to pursuade the console to pass on the Alt-Left|Right combo. Any thoughts?
    I have the same problem. I can disable the default shortcut but the combination (Alt+arrows) has no effect at all then and I can't use it with any application. Any ideas?

  • Alt BOM Selection at the time of order creation

    Hi Friends,
    For one of our FERT We Have 4 Alt BOMS and Fore Production Lines
    My requirement here is while creating The Production Order In co01 I Need to select The Required Alt BOM. How to configure this spro
    However the System Is asking for The Production Lines(as Pop UP Massage)
    Suggestu2026u2026
    Hari

    Hi,
    For that you need to maintain the production Version in material master MRP4 view in that maintain all your BOM and routing.
    Then MRP4 view of material master there is option selection method here you need to select 3-Selection only by production version.
    After that in OPL8 for your order type and plant maintain
    Production version-1     Manual selection of production version
    Please try and come back.
    Regards,
    R.Brahmankar

  • Key binding won't work with alt-up and alt-left arrow combined

    I was playing with key binding trying to create a small app where a timer is started with the press of an alt-arrow key and stopped when the key is released. The timers append Strings to a JTextArea telling which alt-arrow key is currently pressed.
    This program works, and in fact if you press a combination of any two keys, both timers will work simultaneously, that is unless you press both up arrow and left arrow together. Can anyone see a bug in the program that explains why it won't work for these two particular keys when combined? Thanks in advance, Pete
    My SSCCE,
    KeyBindingEg.java
    package javaforum2009;
    import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.InputEvent;
    import java.awt.event.KeyEvent;
    import javax.swing.*;
    public class KeyBindingEg {
      // parallel arrays -- sorry
      private static final int[] ARROW_KEYS = {
          KeyEvent.VK_UP, KeyEvent.VK_DOWN,
          KeyEvent.VK_LEFT, KeyEvent.VK_RIGHT };
      private static final String[] ACTION_STRINGS = {
        "Up", "Down",
        "Left", "Right" };
      private static final String PRESSED = "PRESSED";
      private static final String RELEASED = "RELEASED";
      private static final int TIMER_DELAY = 100;
      private JPanel mainPanel = new JPanel();
      private JTextArea textArea = new JTextArea(20, 30);
      public KeyBindingEg() {
        JPanel northPanel = new JPanel();
        northPanel.add(new JLabel("This JTextField has the focus: "));
        northPanel.add(new JTextField(10));
        textArea.setEditable(false);
        mainPanel.setLayout(new BorderLayout());
        mainPanel.add(northPanel, BorderLayout.NORTH);
        mainPanel.add(new JScrollPane(textArea), BorderLayout.CENTER);
        setBindings();
      private void setBindings() {
        int context = JComponent.WHEN_IN_FOCUSED_WINDOW;
        InputMap inputMap = mainPanel.getInputMap(context);
        ActionMap actionMap = mainPanel.getActionMap();
        for (int i = 0; i < ARROW_KEYS.length; i++) {
          // timer is started on key press and stopped
          // on key release.
          Timer timer = new Timer(TIMER_DELAY, new KeyTimerListener(
              ACTION_STRINGS));
    timer.setInitialDelay(0);
    // get input maps for all alt-arrow keys for both key press
    // and key release
    inputMap.put(KeyStroke.getKeyStroke(ARROW_KEYS[i],
    InputEvent.ALT_DOWN_MASK, false), ACTION_STRINGS[i] + PRESSED);
    inputMap.put(KeyStroke.getKeyStroke(ARROW_KEYS[i],
    InputEvent.ALT_DOWN_MASK, true), ACTION_STRINGS[i] + RELEASED);
    // set corresponding actions for the two different key presses above
    actionMap.put(ACTION_STRINGS[i] + PRESSED, new ArrowKeyAction(false, timer));
    actionMap.put(ACTION_STRINGS[i] + RELEASED, new ArrowKeyAction(true, timer));
    @SuppressWarnings("serial")
    private class ArrowKeyAction extends AbstractAction {
    private boolean onKeyRelease;
    private Timer swingTimer;
    public ArrowKeyAction(boolean onKeyRelease, Timer swingTimer) {
    this.onKeyRelease = onKeyRelease;
    this.swingTimer = swingTimer;
    public void actionPerformed(ActionEvent arg0) {
    if (onKeyRelease) {
    swingTimer.stop();
    } else {
    swingTimer.start();
    private class KeyTimerListener implements ActionListener {
    private String actionString;
    public KeyTimerListener(String actionString) {
    this.actionString = actionString;
    public void actionPerformed(ActionEvent arg0) {
    textArea.append(actionString + " pressed\n");
    public JComponent getPanel() {
    return mainPanel;
    private static void createAndShowGUI() {
    JFrame frame = new JFrame("KeyBindings Example");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.getContentPane().add(new KeyBindingEg().getPanel());
    frame.pack();
    frame.setLocationRelativeTo(null);
    frame.setVisible(true);
    public static void main(String[] args) {
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();

    camickr wrote:
    I noticed the problem a while ago with a similiar example and asked the same question to which nobody could give an explanation. The same observations seem to apply to your example in that using the numpad arrow keys work without a problem.
    [http://forums.sun.com/thread.jspa?threadID=5176816]
    Yes indeed. I suppose (as always) I should have searched the forum first before asking the question. Thanks for the link and info.
    /Pete

  • FR: Opt/Alt+Shift selects entire word

    Opt+the arrow keys move from word to word like in pretty much every application, but when you add the Shift key you lose that functionality and end up going through each character. This is a super useful thing to select a few words quickly, and it's even more helpful in the code windows where often more than you want gets selected by double-clicking.
    Also, is there an official place to post feature requests? The wish list page doesn't have Edge Animate listed, and the actual Edge page said to do it here, but just in case...

    All you need to do is flatten your layers to get a background layer.

  • Why can't I use command+alt+arrows to switch between tabs correctly anymore?

    I used to be able to use the method of command+alt+left or right arrows to switch between tabs. For example: I could be playing an online game, and be clicking things inside of the box on the screen that the game was on, use the method, and easily switch to another tab. Now, however, it doesn't let me switch between tabs unless i click outside of the game area.

    Don't forget that there are many "pieces" to internet access that must all be set to make manual IP selection work, namely:
    1) Your IP address
    2) The addresses of your DNS servers
    3) The default route via which packets leave your network ("router" in Network->TCP/IP)
    4) Your subnet mask
    As mentioned above you also need to assign an address from outside the DHCP pool that is on the same subnet, as at least some routers will refuse to route traffic that seems to originate from IP addresses that fall within the DHCP pool over which it has control if it did not yet assign that IP address to a client.

  • Sending alt commands

    I am running remote desktop client to login in to a windows 7 machine from an Ipad, the Ipad has a barcode scanner connected to it, for all intensive purposes it is a Bluetooth keyboard.  Does anyone know if you connect a windows keyboard Bluetooth
    to an ipad running RDC if you can send alt commands(IE note pad alt f, and alt s will allow you to save)?  When in RDC you have to hit the alt key for each character, so if you wanted to do alt 171 (½) you can't, unless I am mistaken. 
    If any one knows a solution it would be much appreciated. thanks 

    Hi,
    If Bluetooth is enabled, a Bluetooth keyboard should be automatically detected.
    Due to limitations on the iPhone OS special keys such as Ctrl, Option, and Function will not work as expected. The following keys currently work:
    Alphanumeric keys
    Cursor keys
    Tab: Tab works, but Shift+Tab does not work
    Home / Pos1: Alt+Left = Home
    End: Alt+Right = End
    Page Up: Alt+Up = Page Up
    Page Down: Alt+Down = Page Down
    Select All: Command+A = Ctrl+A (Select all in most programs)
    Cut: Command+X = Ctrl+X (Cut in most programs)
    Copy: Command+C = Ctrl+C (Copy in most programs)
    Paste: Command+V = Ctrl+V (Paste in most programs)
    Symbols: Alt+Alphanumeric keys will produce different symbols depending on the language configured
    Meanwhile, I’m afraid that it is Ctrl+C to save and Ctrl+F to open the search box.
    In addition, as a workaround, you can use the On-Screen Keyboard.
    Type without using the keyboard (On-Screen Keyboard)
    http://windows.microsoft.com/en-us/windows/type-without-keyboard#type-without-keyboard=windows-7
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • Why is alt click save disabled on firefox 13?

    I used to be able to press Alt, left click and save but that no longer seems to be the case with firefox 13, why has it been disabled?
    It was a great way to selectively and quickly save images rather than right click, click save as, have the save dialog appear and then eventually have the file saved.

    Ah, never mind I found that the update had disabled the altleft click save, I looked in about:config to see if there was anything and saw that there was a variable browser.altClickSave which was set to false.
    I set it back to true and it start working again.

  • Problem with alt key in Photoshop CC2014

    I'm running Photoshop CC 2014.2.2 Release under Win 7 on a dual monitor system 12 G ram, i7 processor, and a Radeon HD 6700 Graphics card. Everything was working fine until a few days ago. The first problem I noticed was in using ALT-left click to reduce zoom. CTRL-left click zoomed up OK but ALT-left click acted almost like I was pressing the F key to change the view. There are work-arounds for zooming so I continued working. Then I found I could not add a black mask to a layer by pressing ALT while clicking the add layer mask button on the layer panel. I also found that ALT didn't work right in ACR. For example in ACR holding down the ALT key changes the Cancel button to Reset, but clicking on Reset doesn't in fact reset any of the sliders.
    I've closed and reopened Photoshop which helped for a short while but the problem came back. I opened Photoshop with the SHIFT-CTRL-ALT keys held down and accepted the resulting dialog box offer to delete preferences, which helped but again the problem returned. I've deleted and redownloaded Photoshop two or three times to no avail, and the last time I also checked that alt key combinations in both Bridge and Lightroom work OK at the same time they are not working in Photoshop. I haven't seen the Alt key misbehave in any application but Photoshop.
    I would any suggestions any of you might have about what is wrong.
    Message was edited by: Bob Roby to fix typos.

    Just to clarify, are you referring to Alt Space bar left click and drag for zoom?  If yes, then that needs 'Use GPU' enabled in Preferences > Performance.  So can you check that? It actually works with either Ctrl or Alt together with the space bar. Left mouse click and drag left and right to zoom in and out.
    If GPU is checked, can you try some different settings?
    Photoshop CC and CC 2014 GPU FAQ
    You should also make sure the video card driver is fully up to date, and from the card maker's web site.

  • I created an Apple ID for iTunes using a work email address and left that company before I had an opportunity to change the email and password for that account.  How do I change the email address to a new one that I can access?

    I created an Apple ID for iTunes using a work email address and left that company before I had an opportunity to change the email and password for that same account.  Now I can't seem to login to that account and I can't choose the option for forgot password because it will send email to the old workplace.  How do I change the email address to a new one that I can access?

    If you remeber the password to that Apple ID then follow these steps
    1 - Make sure you have an email address that is NOT an Apple ID
    2 - Go to AppleID.Apple.com
    3 - Where it reads Manage Apple ID - Sign in
    Once you are signed in want to make sure the email address you are wanting to use is NOT set up as a "Recovery/Rescue" email for this account.
    [To check this - Main page where you see Primary ID - below do you see the email address you want to use listed towards the bottom? Yes - Delete / No - Good ./. If made any adjustments "Save" Next on the left select "Password & Security" - Answer your security questions you set up "if you have any" then scroll towards the bottom and check to see if you see the email address you want to use. Yes - Delete / No - Good] <-> Also you can change your password on this page as well. Any adjustments made "Save"
    Once this is done go back to the main page where you should read "Primary ID" and change the email address that is showing to the new email address youo want. "Save" Done
    I learned this not to long ago and worked for me. Hope this helps you!

  • Is there a way to send an e-mail to everyone in my address book WITHOUT typing/selecting each address in individually?

    My old e-mail address is going to be discontinued and I need to notify everyone in my Mozilla Thunderbird address book. Is there a way to send an e-mail to everyone in my address book WITHOUT typing/selecting each address in individually?

    Bonjour zmerill
    Yes it is possible and simple to do.
    - In the compose window of TB, display the address books on the left
    - select the adress book you want
    - select normally the first contact (left click)
    - while pressing a shift key, select the last contact (--> all selected)
    - just under the last contact, use the button you want.
    In an address book it is also possible to create a mailing list.
    Pierre

  • In Dreamweaver CC code view, how do I reenable shift-control+arrow keys to select words?

    In previous versions of Dreamweaver (for Windows but presumably for other operating systems as well) and in pretty much any other text editor (except maybe for vi/m but including the one I'm using to write this message in now). I can select characters using shift plus the arrow keys and select words by pressing shift-control plus the arrow keys. It seems you now have to use shift-alt to select words. I don't want to have to undo about 25 years of habit just for Dreamweaver.
    Please say this is an easy setting I can uncheck somewhere! Thanks!

    That is an issue that has come up a lot lately...
    Make sure to add your voice to the others here: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform and hopefully in the next release they'll put it back to normal.

Maybe you are looking for

  • Problems after upgrading to iOS 6.0 - HELP !! (iphone 4S)

    I just bought iPhone 4S 64Gb one week ago.Yesterday morning I upgraded to iOS6.0 and encounter the following errors: 1. I can not turn on/off Wi-Fi. Button greyed out. 2. Auto-Brightness function does not work. 3. When running high graphics game like

  • IMessages no longer sync across devices

    I've been using iMessage since it came out, and up until a few weeks ago all my devices were syncing beautifully! MacPro Desktop, iPad2, and iPhone 5. All running latest OS... However recently, they are no longer syncing. Texts received by iPad (or M

  • Help on generating token for opendoc url in XI3.1

    Hi Guys, I am trying to get some help in generating token for opendoc url to avoid login while trying to access a report in Infoview. From a previous post I got this code: <%@ page import="com.crystaldecisions.sdk.framework.*" %> <%@ page import="com

  • Error while running hz_cust_account_site_v2pub.update_cust_site_use

    Hi All, I am getting below error while trying to update the location on the customer sites. "This record in table hz_cust_site_uses cannot be locked as it has been updated by another user." i am using below script for update "/* Formatted on 2013/01/

  • Deli support in Cocoon 2

    We're developing Web application with heavy use of XML/XSL. For that we're using Cocoon 2 (from apache project) Right now we need to support parameterized XSL's - so we've decided to include Deli support in Cocoon framework. We have read all availabl