Fields of text not able to tab between 2 fields

Hello

I placed 2 text for the username and password entry fields, I have on publish/preview, I type the user name and go to type the TAB key to move the field password but nothing happens and cursor does not move on the other field...

I tried a quick search for this question because I thought that it has already happened to others, but did not find what I need... the answer ;-)

Kind regards

Sabine

DOH! I just find additional information on the tab between these areas, then will check that fisrt... must be Friday (more here)

Hello

Welcome to the Forum from Adobe.

Have you tried to use the shortcut option assigned as "Tab" in the action for the input of text box properties as shown in the following image:

Thank you

Loveesh

Tags: Adobe Captivate

Similar Questions

  • Not able to communicate between the VLANS on SG300-10

    Please take a look at my crude drawing of how I want my network to work:

    SG300-10
    __________________________________________
    | 1. 2. 3. 4. 5. 6. 7. 8. 9. 10.
    |_|___|__________________________________|
    |   |_________________________________
    |_________________                   |
    __________________  _______|_________  _______|_________
    |-VLAN 1-|  | - VLAN 10-|  | - VLAN 20-|
    |   Management |  | 192.168.10.1 |  | 192.168.20.1.
    | 192.168.1.250 |  |               |  |               |
    |________________|  | Internet router |  |   Devices.
    | 192.168.10.2.  | Box of physics |
    |_______________|  | 192.168.20.2 |
    | Server 2008R2.
    | DNS, DHCP, AD DC |
    |               |
    | Physical boxes |
    | 192.168.20.x |
    | W7 Workstations |
    |_______________|

    I put a static IP address on the server 2008R2 host and Internet router.  I have configured my VLAN and I put each VLAN IP (as shown above), I put a 0.0.0.0 route to the Internet router, but also routes for each range of IP VLAN x.x.x.0 and I put the gateway on all host on VLAN 20 to be 192.168.20.1.

    I'm unable to access the Internet, ping the router or access the webpage switch management of any host on VLAN 20 unless I manually set the IP address on the host VLAN 20 on the same IP range as the machine I'm trying to get. As such:

    If I manually set the IP host address to 192.168.1.50, I can access the administration of the switch, but then not RDP in or ping any host on VLAN 20 or ping the router Internet on VLAN 10.

    If I manually set the IP host address to 192.168.10.50, I can ping the router Internet but cannot RDP into or ping any device on VLAN 20, nor can I access the Switch Management page.

    If I let DHCP assign the IP 192.168.20.5, I can RDP in and ping all devices VLAN 20, but I can't ping all devices on VLAN 10 or access the administration of the switch to VLAN 1.

    I know I'm missing something simple, and I worked on it for about 30 hours now but can't seem to get this to work. Someone could possibly help?  Thanks in advance.

    Just to be sure, is the SG300 mode switching L3 / L2 switching?

  • Question... I was not able to take tab FireFox Mode... you have eliminated the possibility of moving from a 2 window... If not what should be checked in t

    Question... I was not able to take tab FireFox Mode... you have eliminated the possibility of moving from a 2 window... If not, what needs to be checked in the menu options for mode 2 window window... I use Version 23.0.1

    Hi gordie, you could use an addon to restore this configuration of the user interface: https://addons.mozilla.org/firefox/addon/hide-tab-bar-with-one-tab/

  • I'm not able to open a new tab by clicking on the sign '+' next to the tab on the main page.

    When I'm in the initial web page which opened during the loaded Firefox, I'm not able to open a new tab/page when I click on the sign «+» Is there a setting I need to adjust? Thank you.

    upgrade your browser Firefox 8 and try

  • I'm not able to open a new tab manually. I tried to click on the new tab button and going to file and clicking on new tab. This is the case since 20:00 02/10/2011.

    I have been using Mozilla for about 4 years and never had any problems by opening a new tab manually. But since yesterday, I am not able to do. I even uninstalled Firefox and then re installed. No change.

    Try to disable or uninstall the Ask toolbar and it should work again. There is a compatibility issue with the Ask toolbar, following a security update in Firefox 3.6.13

  • I'm not able to open mail or text links.

    I am not able to open all my mail or text links. I also found that Safari is no longer on my phone and it does not appear under settings.  It is a new problem in the last 2 weeks or less.  I don't know if it happened after I updated my phone or not.  I have the 6 model MG632LL/A iPhone and I use version 9.2 (13 c, 75).

    Check the settings > General > restrictions > make sure Safari is less allow. -AJ

  • Not able to see the fields within a custom resources optimization

    Hi all

    I am not able to see the fields within a custom value.

    Here is my code for the custom resource optimization:

    public class CustomContentContainer extends VerticalFieldManager{
    
        String content_header;
        int container_height;
        int displayWidth = Display.getWidth();
        int displayHeight = Display.getHeight();
    
        public CustomContentContainer(String content_header,int height){
            super(Manager.NO_VERTICAL_SCROLL | Manager.NO_HORIZONTAL_SCROLL);
            this.content_header = content_header;
            container_height = displayHeight-height;
        }
    
        protected void sublayout(int maxWidth, int maxHeight) {
            super.sublayout(maxWidth, container_height);
            setExtent(maxWidth,container_height);
        };
    
        protected void paint(Graphics graphics)
        {
            int X_POS = 20;
            int Y_POS = 20;
    
            int width = displayWidth;
            int height=container_height;
            int[] xPts = {0, width, width, 0};
            int[] yPts = {0, 0, height, height};
            int[] colors = { 0xffffff, 0xf7f7f6, 0xd4d0cc, 0xb0a9a2 };
            graphics.drawShadedFilledPath(xPts, yPts, null, colors, null);
    
            graphics.setColor(0xc0c0c0);
            graphics.drawRoundRect(X_POS, Y_POS, getWidth()-40, container_height-40, 10,10);
    
            int stringWidth = getFont().getAdvance(content_header);
            graphics.setColor(0xF8F8F8);
    
            graphics.fillRect(35, 5, stringWidth+10, 30);
    
            graphics.setColor(0xFF0000);
            graphics.drawText(content_header, 40, 5);
        };
    
    }
    

    Here is the Code inside the class from the main screen

    settingsContainer = new CustomContentContainer("Settings",vodavaultLogo.getHeight());
            contentContainer = new VerticalFieldManager(Manager.VERTICAL_SCROLL|USE_ALL_WIDTH);
    
            passwd1 = new CustomEditField();
            passwd2 = new CustomEditField();
            contentContainer.add(passwd1);
            contentContainer.add(passwd2);
            contentContainer.setMargin(35,35,35,35);
    
            mainContainer.add(vodavaultLogoField);
            settingsContainer.add(contentContainer);
            mainContainer.add(settingsContainer);
            add(mainContainer);
    

    You must call the super.paint (.) in your paint (...) optimization of resources, if you paint all areas which are added.

  • I'm not able to click on the tabs at the top navigation links left on my Sony Vaio laptop

    I am facing problem with my Sony Vaio laptop. I'm not able to click on the tabs, navigation links at the top left. Most of the time I face issue by selecting the files too.

    I keep my windows and drivers updated. I tried to run hardware troubleshooting wizard. But nothing has worked for me.

    Apparently not hardware problem that sometimes I am able to click on the tabs at the top left.

    The details of my laptop are:

    Model name: Sony Vaio SVE15136CNB

    Processor: Intel Core i5 - 3230M @CPU @2. 60 GHz

    RAM: 4 GB

    System type: 64-bit

    Edition of Windows: Windows 8 unique language

    Please provide me with solution.

    Hi Alain,

    Thanks for the reply.

    I suggest you to configure the computer to boot and check if it helps.

    Affecting the system in a clean boot state will help you determine if third-party applications or startup items are causing the problem.

    How to perform a clean boot for a problem in Windows Vista, Windows 7 or Windows 8
    http://support.Microsoft.com/kb/929135

    Note: After the boot minimum troubleshooting step, follow the "How to reset the computer to start as usual after a clean boot troubleshooting" section in the link provided to return the computer to a Normal startup mode.

    Hope this information helps. Answer the post with an up-to-date issue report to help you further.

  • Not able to select .jpg to fill selector background image source property s < style > embeded, window closed until I can choose my .jpg to fill in the url field.

    Not able to select .jpg to fill selector background image property of the source s < style > embeded, window closes before I can choose my .jpg to fill in the URL field in the background-image property. Any suggestions? Thank you!

    Manually, enter it in code view.

    background - image: URL (yourimagepath.jpg);

    It could be a code error, DW requires a valid code / clean for many of its functions to work properly. Run http://validator.w3.org/nu and The Service of Validation CSS W3C validators and clean the detected problems. If that doesn't help, clear the cache program or restore preferences can help.

  • Not able to see the Administration tab for Admin users to one of the Planning Application.

    Hello

    We use the Hyperion Planning 11.1.2.2 and when I connexiona one of the planning application, I'm not able to see the Administration however when I connexiona other applications I see the administration tab.

    "" What I did is that I created a test user in the native directory services shared and implemented the "interactive user" role of the application. When I logged in one application, I don't see the administration tab however when I logged into another application, I can see the administration tab.

    can someone help me solve this problem.

    Did any who face such a problem before. Thanks in advance

    Kind regards

    VJ

    We must reconfigure the deployment on application server and Web server after installing the patches, and once reconfigure us the Java heapsize would become by default that we must change them by going to regedit and this is how the above question will be resolved.

  • I'm not able to download Adobe Edge reflow to my Windows 10. It is said there download on the web page, and the seams do something on the cloud adobe creative (but that's all). I don't see that she has actually download the apps tab and tried remained

    I'm not able to download Adobe Edge reflow to my Windows 10. It is said there download on the web page, and the seams do something on the cloud adobe creative (but that's all). I don't see that there actually download the apps tab and tried to restart my computer, but nothing works.

    Has managed to understand me. Right-click on the icon "Adobe Creative Cloud" and click "Properties" and click on the tab "compatibility". The decline of the antipodes 'Compatibility Mode' select 'Windows 8 ', click on 'Apply' then 'OK'. You should be able to go back and re - download the Adobe Edge reflow, by going to tools and software Responsive Web design | Download Adobe Edge reflow CC (Preview).

  • I just ran updated today in DC and now I am not able to add text notes and my signature to a PDF document I have in the previous version... suggestions please.

    I just ran updated today in DC and now I am not able to add text notes and my signature to a PDF document I have in the previous version... suggestions please.

    The option to edit PDFS in tools has an associated cost, and this tool was already in my previous release... a way to revert to this version?

    Use Adobe Acrobat, Acrobat Reader.

  • I'm trying to create one named calculation in a field, but not able to select only the required fields, other than all or not.

    Hi all

    I installed "Acrobat Standard DC".

    I've been working on a PDF file to filliable form.

    Then tried to make a calculation in a field, but wasn't able to do.

    When you set up, I was not able to select only the necessary fields.

    field-select_0.pngfield-select_1.png

    I have only be able to select all or not!

    Is that what I'm doing wrong?

    Even trying in "simplified... field. "it doesn't work.

    Thanks for any suggestions!

    Use the space bar to select a single box.

    Wednesday, July 29, 2015, at 14:16, supporth66519991 [email protected]>

  • I have a list of data with tabs between text instead of columns, I converted to a table?

    Hi all

    I have a list of 20 pages of data, but instead of it being in the columns of it is spaced with tabs between the numbers. For example:

    2012-01-01 12 60 0 4 1,112

    is: 2012-01-01 < tab > 12 < tab > 60 < tab > 0 < tab > 4 < tab > 1.112

    Is there a way to put this in a table without having to fill it all in manually? Convert the tabs list in a table as a whole?

    Any suggestions are appreciated.

    Thank you!

    Luuk

    1. Select the text

    2. Select the "Table" menu > "convert text to table...". »

    3. click on OK.

    See also help: help InDesign | Creating tables -paragraph 'create an array of existing text.

  • Not able to find the logical size tab in the layer of MDB OBIEE 11 G

    Hi all

    Recently, I ran a problem interested. We use the tool of Administration Oracle BI 11.1.1.6.6 version, Version repository: 320.

    I'm not able to see logical dimension tab to create the dimension hierarchy.

    I followed the normal method as all versions. Business model-> new item-> (no logical dimension). I am able to see the folder to display logical and logical Table.

    I have only the client tool on my machine. Please could someone suggest me how should I solve this problem.

    Any help is appreciated.


    Thank you
    Ashwini K.

    You see this option when you right-click on the dimension table: http://i51.tinypic.com/2lsw1tj.jpg?

    Check if there is already a hierarchy that is created for this table using the query related objects option.

    Please award points if helpful/correct.

Maybe you are looking for