Changing Tab order in a completed form without altering or moving fields here and there

Hi All,
I've made a complex questionairre and is almost complete. Now the problem is that when I converted this file from Word, many fields were automatically detected and their tab order/ numbering was set by Acrobat itself. The remaining fields in the form (at different places) were created by myself. Now in the tab ordering, the fields automatically detected have priority and the fields I created, are much different from the corresponding fields in tab numbering. For your understanding, I'm including the screenshot too. Please see the tab numbering in the image and after field # 7, there is field # 28, then field # 26, and then field # 29 which is not the way it should be.
Please advise any solution (if there is any) on your earliest convenience.
Thanks in anticipation!

Have you opened the "Pages" navigation panel and looked at the options for the page?
There should be a series of options like "Row", "Column" or "Unspecified". Select the "Row" and see if the form tabs the way you would like.

Similar Messages

  • Control Click to Change Tab Order

    I know there are new ways to move the field names around to change form fields, but I miss the ability to change tab order by control clicking on the field. I like the new ones, but would like to have the old way also.

    You can get the coordinates of the mouse "drop" relative to the scene in the onDragDropped handler with
    event.getSceneX() and event.getSceneY().
    You can get the location of the top left of a node relative to the scene with
    private Point2D getSceneLocation(Node node) {
         if (node.getScene() == null) {
              return new Point2D(0,0);
         double x = 0 ;
         double y = 0 ;
         for (Node n = node ; n != null; n=n.getParent()) {
              Bounds boundsInParent = n.getBoundsInParent();
              x += boundsInParent.getMinX();
              y += boundsInParent.getMinY();
         return new Point2D(x, y);
    (and you can get the other corners of the node simply by adding the width and/or height from node.getBoundsInLocal() to the result of that if you need.)
    So if you ensure every tab has a graphic, you can iterate through the tabs and do something like
    int dropIndex = 0 ;
    for (Tab tab : tabPane.getTabs()) {
         Point2D tabLocationInScene = getSceneLocation(tab.getGraphic());
         if (tabLocationInScene.getX() > event.getSceneX()) {
              break ;
         } else {
              dropIndex++ ;
    tabPane.getTabs().add(dropIndex, tabToBeAdded);
    Ensuring every tab has a graphic probably just means setting the text to an empty string and setting the graphic to a Label containing the text; or I guess you could just use a zero width and height Rectangle, or some such.

  • Changing tab order

    I have created a generic form and then used it as the base for my custom forms.  I had used radio buttons on one section and realized that is not the correct format so I changed them to check boxes.  When I made the change it completely messed up the tab order even though all I did was change the format from radio to check box.  Any ideas why this happened and how to prevent it?  I have 90 custom applications that now have to be changed and fixing the tab order is taking forever.  Any help is greatly appreciated.

    You can rearrange the Tabbing Order through the Tab Order pallete. Did you try that?
    Tab Order pallete can be opened from Window menu
    Nith

  • Changing tab order in Acrobat XI

    Is there a way to get Acrobat XI to change the tab order by clicking the field like we did in older versions? I've had good luck using sort by row, but the form I'm working on now isn't sorting by row correctly.
    Thanks for the help!!
    Ken K. - 2191  

    Thanks Gilad.  I'm getting used to the newer way of ordering tabs.

  • Changing tab order of JTextfield

    hi,
    in my below code i've four textfields and i want to change the tab order of those textfields. i tried setNextFocusableComponent() but getting error on using this method. So plz tell me how it cud b done?
    the error is: demo.java uses or overrides a deprecated API.
    Recompile with -deprecation for details.
    if ne body knows the meaning of this error & how to recompile with -deprecation plz tell me
    import javax.swing.*;
    import java.awt.*;
    public class demo
    public static void main(String args[])
    JFrame f = new JFrame("Demo");
    f.setSize(640,480);
    f.setLayout(null);
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    JTextField a = new JTextField(10);
    JTextField b = new JTextField(10);
    JTextField c = new JTextField(10);
    JTextField d = new JTextField(10);
    a.setBounds(100,100,100,25);
    b.setBounds(100,150,100,25);
    c.setBounds(200,100,100,25);
    d.setBounds(200,150,100,25);
    f.getContentPane().add(a);
    f.getContentPane().add(b);
    f.getContentPane().add(c);
    f.getContentPane().add(d);
    // on adding these lines m gettin' error...
    a.setNextFocusableComponent(c);
    c.setNextFocusableComponent(b);
    b.setNextFocusableComponent(c);
    c.setNextFocusableComponent(a);
    f.show();
    }

    This is all you need to understand to get going --
    -- the Component returned by the method getComponentAfter (...) will get the focus on pressing Tab
    -- the Component returned by the method getComponentBefore (...) will get the focus on pressing Shift+Tab
    -- the Component returned by the method getDefaultComponent (...) will get the focus when the parent panel is displayed
    Try to understand this Really Bad Example, then apply what you have understood to the sample you downloaded, which uses a Vector to store a list of Components and returns the next/previous Component for get..Before and get..After, wrapping around from the last to the first element and vice versa; also returns the first/last element for getFirst... and getLast... and the first element for getDefault...
    Run this code and navigate by Tab or Shift-Tab, then uncomment the line I marked and try again. You'll understand.package ashwin;
    import java.awt.Component;
    import java.awt.Container;
    import java.awt.FocusTraversalPolicy;
    import java.awt.GridLayout;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    import javax.swing.SwingUtilities;
    public class ReallyBadExample extends JFrame {
        private JPanel nyPanel;
        private JTextField myTextField1, myTextField2, myTextField3;
        private static MyFocusTraversalPolicy myFocusTraversalPolicy;
        public ReallyBadExample () {
            setLayout (new GridLayout (0,1));
            setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
            myTextField1 = new JTextField ();
            add (myTextField1);
            myTextField2 = new JTextField ();
            add (myTextField2);
            myTextField3 = new JTextField ();
            add (myTextField3);
            myFocusTraversalPolicy = new MyFocusTraversalPolicy ();
            // Uncomment the next line and see the difference
            //setFocusTraversalPolicy (myFocusTraversalPolicy);
            pack ();
            setVisible (true);
        class MyFocusTraversalPolicy extends FocusTraversalPolicy {
            public Component getComponentAfter (Container aContainer, Component aComponent) {
                if (aComponent == myTextField1) {
                    return myTextField3;
                } else if (aComponent == myTextField2) {
                    return myTextField1;
                } else return myTextField2;
            public Component getComponentBefore (Container aContainer, Component aComponent) {
                if (aComponent == myTextField1) {
                    return myTextField2;
                } else if (aComponent == myTextField2) {
                    return myTextField3;
                } else return myTextField1;
            public Component getFirstComponent (Container aContainer) {
                return myTextField2;
            public Component getLastComponent (Container aContainer) {
                return myTextField2;
            public Component getDefaultComponent (Container aContainer) {
                return myTextField2;
        public static void main (String[] args) {
            SwingUtilities.invokeLater (new Runnable () {
                public void run () {
                    try {
                        new ReallyBadExample ();
                    } catch (Exception ex) {
                        ex.printStackTrace ();
                        System.exit (1);
    }db

  • Control/change tab order

    How does one control the tab order (the order in which controls are visited when the TAB key is pressed) in a JavaFX 1.3.1 application?
    It isn't always the case that one wants the tab order to be the same order as used in the layout.

    Thanks a lot for your help guys.
    Let me explain a little bit more my problem, maybe you guys get a good way to do this.
    Ok, I have a tab control with 4 tabs (Auto Mode, Manual Mode, Troubleshooting and Configuration) in that order. In the "Auto Mode and Manual Mode tabs I have a selector switch to select the operation mode (auto or manual). Now, when I have the switch in auto mode, the manual mode tab page is hidden, when I change the selector switch to manual mode the manual mode tab page is unhide, the auto mode tab page is hide and the manual mode tab page is automatically selected. This happens because my manual mode page is the second one and when the page before is hidden the next one get active. The problem came up when I change the switch back to manual mode. I want that the auto mode page unhide, the manual mode page hide and the auto mode page get active, but instead the page that came active is the troubleshooting page since this is the one after the manual mode page.
    So, what I was planning to do was to rearrange the pages order when auto or manual mode are selected so that the second page be always the hidden one.
    Maybe I confuse you guys more, but that'sthe idea. If something came out of your mind, I really appreciate the help.
    Ferdinand Martinez
    FMO Automation LLC

  • Changing Sales order Status (Z-Status Profile) without manual intervention

    Hi All,
    I have a  Z-Status Profile created for Sales Order. There are about 6 statuses in this profile. An enhancement requires change of particularly two statuses only by the user exit after certain calcualtions and not manually by any user in any case.
    Can anyone suggest a way to handle this case? If authorization object should be created then based on which fields should this authorization object be created? If not, this there any other way to handle this.
    Thanks,
    Sophia Xavier

    Hi Pete,
    Thanks for your reply. The usage of the User Exit and the Function Module is quite clear. My question is how do we control the change of two statuses only by the User Exit without any manual intervention, i.e., no user should be able to change these two statuses manually,only the program should be able to do this..How do we handle this scenario?
    Thanks,
    Sophia Xavier

  • Professional 7: How to turn off display of tab order numbers in a form?

    When I open a PDF which has form fields, it displays each form field's tab order number. They appear as little boxed numbers in the upper left-hand side of each form field. Can anyone let me know how to turn off the display of these tab order numbers?
    Thanks in advance for your help.

    Bernd Alheit wrote:
    But I can't see the numbers in the original form.
    Have they posted the original form somewhere? I just see a couple of image files that the OP posted.

  • Portfolio Item - Change tab order

    Hello Everybody
    I want to know how is possible to change the order of the Item tabs ?
    For Example, If I want to display the tab "Phases and Decisions" in first position before the "Overview" one, what must I do for this result ?
    Thanks for your help
    Rémy

    Hi,
    I think you can do it in  this path :
    Transaction SE80 -->Package RPM_UI_WD -->Webynpro --> ApPlication Component -->RPM_ITEM_DETAILS_CFG --> Start configurator --> Change --> Component Configurator --> Variant RIH_CREATE --> here you can see the views and each view has a sequence Index.
    Regards,
    Sara

  • Can this be done? Emailing a completed form without emailing.

    When using a standard html form, a user can fill in the required fields, press post, and abracadabra, the results of the form are emailed to the specified account and the user is redirected to a page that says your form has been submitted.
    Can this be done using a .pdf? The email button is simply retarded. Why do users have to go through the hassle of having their email client opened just to submit the form they just completed? There probably isn't any other way, but would be nice if there was.
    Is it possible to create a submit button that will automatically email the completed .pdf form to a pre-specified email address and then redirect the user to a "thank you" page? I don't want to annoy my customers by forcing them to email me the form. I just want it sent when they click "submit."
    Is this even possible? If so, is it relatively easy?
    Any help is greatly appreciated!

    >Can this be done using a .pdf?
    Sure. The principle is exactly the same: you submit data to a script
    which runs on a web server. You are limited only by what the
    programmer has made the script do. Don't be under any impression that
    it is "magic": if you have a web form which submits and then you get
    an e-mail it's because there is a script on a web server that a web
    programmer wrote to make it happen.
    > The email button is simply retarded.
    I prefer to think of it as a handy tool for testing, but nothing
    anyone would use for the real solution.
    >Why do users have to go through the hassle of having their email client ...
    They don't. Did you know that you can "submit" an HTML form to e-mail?
    But nobody does, because it just isn't a good way of working. Everyone
    expects an HTML form to submit to a web script, but for some reason
    hopes they can use direct e-mail of PDF forms.
    Aandi Inston

  • I am having difficulty with my tab order on a PDF Form.

    The tab order per page works as expected but even though the tab order on the next page is set correctly when i tab from teh last data entry box on a previous page it doesnt then tab to the first tab in next page but somewhere in the middle of the next page?  Perhaps related, I have taken a text box and made it larger so that I can use it as a comment field but when you tab to it.  It brings you to the middle of the text box and not the upper right as I would exepect?

    Close the file and reopen it and check the tab order again.
    The second problem is probably because you didn't make the field multiline, which is an option on the Options tab.

  • Force changing sales order status to completed

    Dear Expert,
    Is it possible to use a function module or execute a report to force change the status of a sales order to completed?
    Setting reason for rejection is an option; however, I would like to know if it's possible via an FM or a report.
    Sincerely,
    Vitthavat A.

    Lakshmipathi wrote:
    Through MASS itself, you can select the Reason for Rejection and change the status of sale orders in bulk.
    >
    >
    > G. Lakshmipathi
    You meant I will need to change the status indirectly by changing reason for rejection, right?
    Can I change the status directly in MASS without changing the reason for jection?
    Vitthavat A.

  • Changing Tab colors in a flash form

    I am trying to change the tab color inside a form... I can
    change the highlighted color but I can't change the ones that are
    not selected...
    I have tried using fillColors:##343434, ##FFFFFF and It works
    for the selected tab, but the others tab have the default color on
    it... how can I change that color?

    Hi Ahsan-chohan,
    Kindly post this query in Acrobat forums:Acrobat
    Regards,
    Florence

  • How to change tab stops in a completed document with Pages?

    I switched from WordPerfect to Pages and have struggled with figuring things out. I have a membership list I do each year with names addresses, phones, etc. I used a right tab to put the phone numbers out on the right margin. Now I find my originally defined margins are off, and I want to change that right tab. I seem to be able to do this only one name at a time: very tedious. Is there a way to change it for the entire list all at once?

    Here is a short script allowing us to select every paragraph starting with a TAB character.
    Of course, we may edit it allowing it to select paragraphs matching an other criteria.
    --(SCRIPT selectparagraphs_starting_withtab]
    Apply this script to a Pages document.
    Every paragraph starting with a TAB character will be selected.
    You may aplly some settings to all of them in a single operation.
    Thanks to Axel Lutgens.
    le 25 juillet 2008
    property L : {}
    tell application "Pages"
    set my L to {}
    tell first document
    set N to count of paragraphs
    repeat with P from 1 to N
    if character 1 of paragraph P is tab then copy (a reference to paragraph P) to the end of my L
    end repeat
    end tell
    select my L
    end tell
    set L to {}
    --[/SCRIPT]
    Yvan KOENIG (from FRANCE vendredi 25 juillet 2008 11:41:29)

  • Changing tabs order in the JTabbedPane (DnD)

    Hi,
    I have a JTabbePane with different tabs in it and I want to be able to drag one tab and insert between other two with the mouse. Kind of like you can reorder sheet tabs in MS Excel. Does any one have an idea how this behavior may be implemented?
    Thanks a lot,
    Ilya

    Thanks for this idea. I misunderstood what you meant until Jeremy responded saying you were �right on the money�. I thought you meant that putting another plot in the array but making it transparent was going to help somehow, but now I understand that you mean plotting the �up front� data to a separate XY graph indicator which is transparent and overlaying the original XY graph. I may wind-up doing this. I�m just not excited about linking all the scaling info from one graph to the scaling of the transparent graph and creating the necessary event handling so that when the user scales one graph or changes the auto-scaling, the other graph�s scales gets updated, but perhaps it�s the only way. Thanks again for your input.

Maybe you are looking for

  • MAX don't release LAN connction while communicating with Agilent 86122A

    Dear guys, Yesterday I met a communication issue while talking to Agilent 86122A via LAN. It showed I cannot run MAX before launching LabVIEW; otherwise I'd have trouble in send commands in LabVIEW. I doubt if MAX MAX don't release LAN connection whi

  • How to change the order of target message? kindly help

    Hi Experts,           I have a source message with fields EmpNo, EmpName, Dept and joining date. The target message has the same structure but fields are in different order. That is, EmpName, Dept, EmpNo and joiningdate. How to achive the target mess

  • Duplicate Workflow Items

    Our customer has a scenario where the Enterprise Portal is federating content from two CE instances, and has Guided Procedures connectors to both of these CE instances.  Both CE instances have recently been upgraded from 7.1 to 7.2, and now when a GP

  • Using FINSTA without IHC possible?

    Do you have any experience with using FINSTA Idoc without IHC? Is it possible to use this? We want to automically transfer EBS from a provider to SAP and want automatically upload and post these statements. Are there any other RFC FM which can be use

  • Trazado en Indesing

    Tengo un problema con la tipografia de las portadas, que cuando lo habren en fotomecanica se les desplaza el traquin de la tipografia, y para corregir ese problema tengo que trazarlas, pero debido a mi ignorancia lo unico que puedo hacer es "crear co