Why can't I tab to the next table cell? That used to work.

Now only the arrow keys work to move from cell to cell in a Pages table. I'm using the newest Pages on a brand-new iMac with Mavericks. When I tab in a table cell, the insert line only moves a half-inch or so.

Jan,
Many features were left behind in the Version 5 edition of Pages. This is a minor one, in the grand scheme.
Clicking on another cell also moves the focus, if that's any easier for you.
Jerry

Similar Messages

  • Why can't my ATV connect to my library when it used to work??

    I have tried everything.  It previously worked, but now after trying to connect to my library it says it's unable to connect.  It keeps telling me to make sure Home Sharing is turned on.  I have tried resetting ATV.  I have tried restoring ATV.  I have tried unplugging ATV.  I have tried turning off my router.  I have tried resetting my router.  I have tried changing the desktop PC's power options to make the display never turn off or sleep.  I have tried turning off Home Sharing and turning it back on at least 10 times.  I have tried setting the IP address to 8.8.8.8.  THE.STUPID.THING.NEVER.WORKS.  It looks like it's going to connect, but then says it can't connect and to make sure I have the latest version of iTunes, etc.  I am using a new PC with Windows 8, but ATV worked at first.  It's just in the past few days that it stopped, and I cannot get it to work again.  Apple, FIX THIS PROBLEM!!!!!!!!

    Apple, FIX THIS PROBLEM!!!!!!!!
    Works fine for others.
    I have tried setting the IP address to 8.8.8.8.  THE.STUPID.THING.NEVER.WORKS
    May I suggest that you follow Apples recommendations.

  • Why can I not tab out of table cell after running command from keyboard

    In my Jtable I have context menu with actions that can be performed on the selected cells either using mouse, or the action can be initiated directly from the keyboard using the defined acceleratorkey.
    After the action has completed you can tab out of the selected cells using the Tab key or cursor keys if the action was initiated with the mouse, but not if initiated with the keyboard but Im at a loss as to what causes the difference.
    thanks Paul

    I found this one someWhere, maybe check your code if Cell returns true = isCellEditable(row, column)
    import java.awt.event.*;
    import javax.swing.*;
    public class TableActions extends JFrame {
        private static final long serialVersionUID = 1L;
        public TableActions() {
            JTable table = new JTable(15, 5) {
                private static final long serialVersionUID = 1L;
                @Override
                public boolean isCellEditable(int row, int column) {
                    return column % 2 == 0;
    //              return false;
            table.setPreferredScrollableViewportSize(table.getPreferredSize());
            JScrollPane scrollPane = new JScrollPane(table);
            getContentPane().add(scrollPane);
            InputMap im = table.getInputMap(JTable.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT);
            //  Have the enter key work the same as the tab key
            KeyStroke tab = KeyStroke.getKeyStroke(KeyEvent.VK_TAB, 0);
            KeyStroke enter = KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0);
            im.put(enter, im.get(tab));
            //  Disable the right arrow key
            KeyStroke right = KeyStroke.getKeyStroke(KeyEvent.VK_RIGHT, 0);
            im.put(right, "none");
            //  Override the default tab behaviour
            //  Tab to the next editable cell. When no editable cells goto next cell.
            final Action oldTabAction = table.getActionMap().get(im.get(tab));
            Action tabAction = new AbstractAction() {
                private static final long serialVersionUID = 1L;
                @Override
                public void actionPerformed(ActionEvent e) {
                    oldTabAction.actionPerformed(e);
                    JTable table = (JTable) e.getSource();
                    int rowCount = table.getRowCount();
                    int columnCount = table.getColumnCount();
                    int row = table.getSelectedRow();
                    int column = table.getSelectedColumn();
                    while (!table.isCellEditable(row, column)) {
                        column += 1;
                        if (column == columnCount) {
                            column = 0;
                            row += 1;
                        if (row == rowCount) {
                            row = 0;
                        if (row == table.getSelectedRow()//  Back to where we started, get out.
                                && column == table.getSelectedColumn()) {
                            break;
                    table.changeSelection(row, column, false, false);
            table.getActionMap().put(im.get(tab), tabAction);
        public static void main(String[] args) {
            TableActions frame = new TableActions();
            frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
            frame.pack();
            frame.setLocationRelativeTo(null);
            frame.setVisible(true);
    }

  • Why can't iTunes find all the album artwork?

    Why can't iTunes find all the album artwork?

    That would fall under Browsing History. Firefox > History -> Show All History
    Firefox doesn't use Temporary Internet Files for anything except Windows Media files.
    Type '''about:cache''' in the URL bar and hit Enter. <br />
    Disk cache device = List Cache entries

  • When filling out a form, some fields copy to others when I tab to the next. How can I make this stop?

    When filling out a form, some fields copy to others when I tab to the next. How can I make this stop?

    You can't using Adobe Reader. It looks like whomever created the form used the same identifiers (names) for various fields. Each field with the same name will populate with the information used in another field of the same name. This is intentional.
    Normally when I see this, it tells me that someone created an initial field then copy/pasted it to make additional fields but forgot to change the names.

  • How can I change the behavior of the Green Enter button when filling out a field in a form? Current it submits the entire form, I would like it to tab to the next field instead

    When using Firefox for Andriod:
    When filling out a field on a form, they keyboard has a Green Enter button that submits the entire form. However, there are multiple fields on the page, and I would like it to tab to the next field. At the very least not submit the form.
    Also, is there a way to configure the keyboard that shows up for each html5 input type?

    They keyboard that shows up has the large "Green Enter" go button, a backspace and some arrow keys, but no tab button.

  • Ms Excel move automatically without pressing Enter or Tab to the next cell

    Hi, I wonder if it is possible to make Ms Excel move automatically without pressing Enter or Tab  to the next cell once a certain number of digits is entered, for example, I'm using a barcode scanner to scan a barcode of 13 digits, so I want Excel
    to move to the next cell once the barcode is scanned.
    example: I'm In cell A1,  this code appeared after scanning "AABB1234567CC", I want Excel to move to A2 in order to scan the next barcode.

    Hi,
    Excel has no direct feature or option to achieve your goal. We'd better try the macro via VBA code to test. Please see the thread:
    http://excel.tips.net/T003923_Automatically_Moving_from_Cell_to_Cell_when_Entering_Data.html
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    If you have further question about code, I recommend you follow with thread which you posted in MSDN forum:
    http://social.technet.microsoft.com/Forums/en-US/6f5344cf-c1b5-485d-982a-eeec45294f9b/ms-excel-move-automatically-without-pressing-enter-or-tab?forum=exceldev
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Just to version 7.Like all updates,ad-ons get disabled.The ad-ons that was disabled,where I am not able to open my emails.Why can't FireFox have updates without disabling ad-ons we need to work with?

    Just to version 7.Like all updates,ad-ons get disabled.The ad-ons that was disabled,where I am not able to open my emails.Why can't FireFox have updates without disabling ad-ons we need to work with?

    ''guigs2 [[#answer-672422|said]]''
    <blockquote>
    NoScript stops cookies, please disable this addon/extension as well as make sure that the language en-us is installed.
    # 1) Open up the Firefox Preferences tab. You can do this by typing about:preferences in the URL bar.
    # 2) Click "Content"
    # 3) Next to "Languages", click "Choose"
    # 4) Select "English/United States [en-us]", click "Add"
    # 5) re-open "about:accounts"
    # 6) Click "Get Started"
    </blockquote>
    Thank you for replying. Unfortunately, I already did all of these things. As you can see from the below screenshot, the language is already set. Also, this screenshot was taken in Safe Mode, so NoScript is not enabled. About:accounts still says I need to enable cookies for some reason. So, this solution didn't work....

  • Why do my songs skip to the next song mid way through the song?

    why do my songs skip to the next song mid way through the song?

    If your country's iTunes Store allows you to redownload purchased tracks, I'd delete your current copies of the dodgy tracks and try redownloading fresh copies. For instructions, see the following document:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Otherwise, I'd report the problem to the iTunes Store.
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the items that are not playing properly. If you can't see "Report a Problem" next to the items, click the "Report a problem" button. Now click the "Report a Problem" links next to the items.

  • Why can't I connect to the Internet on my Adobe Reader? And why do websites tell me I don't have Adobe downloaded when I have an updated version on my computer? It is an IPad,does that affect it?

    Why can't I connect to the Internet on my Adobe Reader? And why do websites tell me I don't have Adobe downloaded when I have an updated version on my computer? It is an IPad,does that affect it?

    Also, download and open the free Adobe Reader app. Then read the Help section to figure out how to use it.

  • I can't be the only person who has this problem - when a month ends on a Saturday I can't drag events into the next month and instead have to cut and paste - a real pain in the butt. I thought there was something called "scroll" but I can't find that

    I can't be the only person who has this problem with iCal- when a month ends on a Saturday I can't drag events into the next month and instead have to cut and paste - a real pain in the butt. I thought there was something called "scroll" but I can't find that.

    Yeah that works, but, it involves a click on the event, a click on edit, a click on the date, keystrokes, plus, since you can't see the next month you have to have a calendar in front of you so as to put it to the right date. It's easier just to cut it and advance the month and paste it, once you are in the right month you can move it around helter skelter willy nilly no problems. Although now that you mention it I will try it, maybe it is easier than cut and paste as I don't really care about the date, as long as it gets moved into the right month I can drag it around all I want.

  • Why can't I connect to the ITunes Store?Also can't download any CD's.For 3 weeks now and no tech support to help on phone?what is up???

    Why can't I connect to the ITunes Store?Even through I troubleshooted with the info I was e-mailed,created new password,
    made sure date,keychain was correct etc and still cannot open store .I have MacOSX 10.4.11 and it does not let me download
    the latest version of iTunes.I need to speak to someone on the phone as it has been over 3 weeks now and this issue is still
    not resolved. also cannot download any CD's. After reinstalling disc 1 as told by 1 800 MY APPLE (as I was unable to cut and paste
    on my Mac)I ended up having to bring the computer in to the Apple Store on 5th Ave in Manhattan as it also required Disc 2 .
    Unfortunately I did not back up my music library and was not told it would be fully erased due to reinstallation. My 6 year music
    library got completely wiped out.iTunes had a history of my purchases but I received an e-mail stating about 35 songs and
    videos I purchased cannot be retroactive due to modification(I don't know what this means)I greatly appreciate if someone would
    help me clarify this issue.
    Thank you.
    Sincerely,
    Maria 

    Does it work at Starbucks and Public Library?
    Have you tried updating the router firmware?

  • Why can I no longer open the App store on my MacBook pro

    Why can I no longer open the App store on my MacBook pro

    Welcome to the Apple Support Communities
    What happens when you try to open the App Store?

  • Why can't i connect to the itunes store

    why can't i connect to the itunes store?

    Dear
    I have this question around 1 week before I make the decision to upgrade my Ipad2 to the new version iOS 5 , however, the problem is same , I can not connect to ITUNES store
    I had tried all of the method you have presented that posted at Internet but no result
    I decided to return to i studio to ask them the reason, but when I gave my IPad to the staff, he just put his wifi password, then the iPad can work as ussually , then he told me maybe my Internet problem, but I can connect to surb my web, I can do everything except to connect the iTunes.
    Then after I call to the wifi provider company, they ask me o set up all the proxy then now I can connect to iTunes store as normally.
    Hope will help you

  • Why can't I connect to the iTunes store 9/24/2011?

    Why can't I connect to the iTunes store 9/24/2011?

    Dear
    I have this question around 1 week before I make the decision to upgrade my Ipad2 to the new version iOS 5 , however, the problem is same , I can not connect to ITUNES store
    I had tried all of the method you have presented that posted at Internet but no result
    I decided to return to i studio to ask them the reason, but when I gave my IPad to the staff, he just put his wifi password, then the iPad can work as ussually , then he told me maybe my Internet problem, but I can connect to surb my web, I can do everything except to connect the iTunes.
    Then after I call to the wifi provider company, they ask me o set up all the proxy then now I can connect to iTunes store as normally.
    Hope will help you

Maybe you are looking for

  • Column Formula with Error in OBIEE 11g

    Hello, On Oracle Business Intelligence Enterprise Edition 11g, I am trying to create an analysis. The database is MySQL. In the database, there is a field of type varchar(10). This field shows a date. In OBIEE 11g, when creating the analysis, in the

  • How can I choose number of pixels

    How do I determine or change number of pixels in photo for posting?

  • CTS+ - Release button missing in CTS browser

    Hello, I am trying to set up CTS+ for our Portal environment. I can create a transport in the Portal, add objects and export. But when I go to the CTS browser Web UI interface through the link beside the transport in the Portal, I don't have the rele

  • Default Month and Year in Date Paramater

    Hi, I have a question and not able to understand how to show a default current month year i.e 112010 as a deualt value in the prompt. Thanks in Advance, Poojak

  • Oracle Default accounts

    Dear All below are sample of Oracle default accounts, Account: ADAMSDefault password: WOODPassword hash: 72CDEF4A3483F60DVersions affected: 9i, 9iR2Description: ADAMS is a sample schema owner and training account. It should always be removed in a pro