F10 Key not working in Web Browser mode

I created a click box on a CP5 screen and assigned F10 as the Shortcut key and the action is "Go to the next slide."  When the user presses F10 the demo would advance to the next screen.
This works great in preview mode.  However, when in Web Browser mode, nothing happens except I get this message at the bottom of the screen, "Contains commands for working with selected item."
How do I get the F10 key to work (action desired: advance to the next screen in my demo) in browser mode?

Hi there
LIkely it depends on the browser, but some keys are always reserved for use by the browser itself and they cannot be used as shortcut keys by a Captivate SWF because the browser will intercept them and not pass them on to the SWF.
I'm not sure if F10 is among those keys, but it may well be.
This would likely beg the question of why Captivate would allow you to assign a shortcut key if if wouldn't work when you publish and play in the browser. And for that I would remind you that SWF output is just one of the ouputs Captivate may produce. If you published as EXE, you aren't bound by browser behavior and the key would likely work just dandy.
Cheers... Rick
Helpful and Handy Links
Captivate Wish Form/Bug Reporting Form
Adobe Certified Captivate Training
SorcerStone Blog
Captivate eBooks

Similar Messages

  • Backspace navigation key not working in web browser using linux, but does on windoze

    using ubuntu 10.04 (lucid). when navigating a web forum, the backspace key (previous page) does not function. the scroll keys are a little jerky too. i have both 'use navigation keys' and 'smooth scrolling' enabled in options.

    See http://kb.mozillazine.org/browser.backspace_action

  • Javascript does not work in web browser

    Hello friends.
    I have a problem with javascript in my Captivate project.
    This script only works in preview in Captivate, but does not work in web browser (IE 9, Mozilla, Chrome).
    Anybody knows why?
    Thank you for your answers.

    Common JS interface
    That is the official documentation for JS in Captivate 8. For more information, have a look at Jim Leichliter's website: CaptivateDev.com - eLearning Development with Adobe Captivate

  • Swing components in applet not working in web browser

    Hi Guys,
    I've created an applet which makes use of some swing components, but unfortunately, not all of them function properly in my web browser (internet explorer or Mozilla Firefox). Its mainly the buttons; the last buttons works and displays the correct file within the broswer, but the first 5 buttons do not work...
    any help please on how I can sort this problem out?
    Heres the code for my applet:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.applet.*;
    public class MainAppWindow extends JApplet
    int gapBetweenButtons = 5;
    final JPanel displayPanel = new JPanel(new BorderLayout());
    public void init()
       //Panel for overall display in applet window.
       JPanel mainPanel = new JPanel(new BorderLayout());
       mainPanel.add(new JLabel(new ImageIcon(getClass().getResource("images/smalllogo2.gif"))),BorderLayout.NORTH);
       //sub mainPanel which holds all mainPanels together.
       JPanel holdingPanel = new JPanel(new BorderLayout());
       //Panel for displaying all slide show and applications in.
       displayPanel.setBackground(Color.white);
       displayPanel.add(new JLabel(new ImageIcon(getClass().getResource("images/IntroPage.jpg"))),BorderLayout.CENTER);
       displayPanel.setPreferredSize(new Dimension(590,400));
       JPanel buttonPanel = new JPanel(new GridLayout(6,1,0,gapBetweenButtons));
       buttonPanel.setBackground(Color.white);
       JButton button1 = new JButton("User guide");
       button1.addActionListener(
         new ActionListener() {
              public void actionPerformed(ActionEvent e)
                   if(displayPanel.getComponents().length > 0)displayPanel.removeAll(); // If there are any components in the mainPanel, remove them and then add label
                   displayPanel.setBackground(Color.white);
                   displayPanel.add(new JLabel(new ImageIcon("images/UserGuide.jpg")));
                   displayPanel.revalidate(); // Validates displayPanel to allow changes to occur onto it, allowing to add different number images/applicaions to it.
       JButton button2 = new JButton("What is a Stack?");
       button2.addActionListener(
       new ActionListener() {
               public void actionPerformed(ActionEvent e)
                   if(displayPanel.getComponents().length > 0)displayPanel.removeAll();
                   displayPanel.setBackground(Color.white);
                   displayPanel.add(new JLabel(new ImageIcon("images/WhatIsAStack.jpg")));
                   displayPanel.revalidate();
       JButton button3 = new JButton("STACK(ADT)");
       button3.addActionListener(
       new ActionListener() {
             public void actionPerformed(ActionEvent e)
                   if(displayPanel.getComponents().length > 0)displayPanel.removeAll();
                   displayPanel.setBackground(Color.white);
                   displayPanel.add(new JLabel(new ImageIcon("images/StackADT.jpg")));
                   displayPanel.revalidate();
       JButton button4 = new JButton("Stacks in the Real World");
       button4.addActionListener(
       new ActionListener() {
             public void actionPerformed(ActionEvent e)
                   if(displayPanel.getComponents().length > 0)displayPanel.removeAll();
                   displayPanel.setBackground(Color.white);
                   displayPanel.add(new JLabel(new ImageIcon("images/StacksInTheRealWorld.jpg")));
                   displayPanel.revalidate();
       JButton button5 = new JButton("DEMONSTRATION");
       button5.addActionListener(
       new ActionListener() {
             public void actionPerformed(ActionEvent e)
                 if(displayPanel.getComponents().length > 0)displayPanel.removeAll();
                 Demonstration app = new Demonstration();
                 JPanel appPanel = app.createComponents();//gets the created components from Demonstration application.
                 appPanel.setBackground(Color.pink);
               displayPanel.add(appPanel);
               displayPanel.revalidate();
       JButton button6 = new JButton("Towers Of Hanoi");
       button6.addActionListener(
       new ActionListener() {
             public void actionPerformed(ActionEvent e)
                     if(displayPanel.getComponents().length > 0)displayPanel.removeAll();
                     TowerOfHanoi app = new TowerOfHanoi();
                     JPanel appPanel = app.createComponents();//gets the created components from Towers of Hanoi
                     JPanel mainPanel = new JPanel();//panel used to centralise the application in center
                     mainPanel.add(appPanel);
                     mainPanel.setBackground(Color.pink); //sets mainPanel's background color for 'Towers Of Hanoi'
                     displayPanel.add(mainPanel);
                     displayPanel.revalidate();
       //adding buttons to the buttonPanel.
       buttonPanel.add(button1);
       buttonPanel.add(button2);
       buttonPanel.add(button3);
       buttonPanel.add(button4);
       buttonPanel.add(button5);
       buttonPanel.add(button6);
       JPanel p = new JPanel(); // Used so that the buttons maintain their default shape
       p.setBackground(Color.white);
       p.add(buttonPanel);
       holdingPanel.add(p,BorderLayout.WEST);
       holdingPanel.add(displayPanel,BorderLayout.CENTER);
       //Positioning of holdingPanel in mainPanel.
       mainPanel.add(holdingPanel,BorderLayout.CENTER);
       //indent mainPanel so that its not touching the applet window frame.
       mainPanel.setBorder(BorderFactory.createEmptyBorder(10,20,10,20));
       mainPanel.setBackground(Color.white);
       mainPanel.setPreferredSize(new Dimension(850,600)); //size of applet window
       mainPanel.setOpaque(false); // Needed for Applet
       this.setContentPane(mainPanel);
    }

    Thanks for the response. I don't quite understand what you're talking about though. I have, in my humble knowledge, done nothing with packages. I have put the applet class (WiaRekenToolActiz.class is the applet class) in the jar file wia_actiz_archive.jar. From what I read on the tutorial, java looks for the applet class in all the jar files specified. Since I put my CODEBASE as the main url, I thought it baiscally didn't matter where you out the html file.
    I shall include the complete html page complete with applet tag to perhaps illuminate a bit more what I mean...
    <html>
    <head>
    <title>Wia Rekenmodule hello!</title>
    </head>
    <body bgcolor="#C0C0C0">
    <applet
    CODEBASE= "http://www.creativemathsolutions.nl/test"
    ARCHIVE= "Actiz/wia_actiz_archive.jar, Generic/wia_archive.jar"
    CODE="WiaRekenToolActiz.class" 
    WIDTH=915 HEIGHT=555
    >
    <PARAM NAME = naam VALUE = "Piet Janssen">
    <PARAM NAME = gebdag VALUE = "01">
    <PARAM NAME = gebmaand VALUE = "06">
    <PARAM NAME = gebjaar VALUE = "1970">
    <PARAM NAME = geslacht VALUE = "man">
    <PARAM NAME = dienstjaren VALUE = "10">
    <PARAM NAME = salaris VALUE = "56500">
    <PARAM NAME = deeltijdpercentage VALUE = "100">
    <PARAM NAME = accountnaam VALUE = "Zorginstelling 'De Zonnebloem'">
    </applet>
    </body>
    </html>

  • Urgent!!! Forms not work on web browser(OAS 10g,Solaris 10 x86).

    Problem discribe:
    1.environment:
    (1)Network: only local network.
    (2)Platforms
    All platforms we use are Solaris 10 for X86.
    (2.1)Server: (intel) Solaris 10 for X86
    Oracle Application Server Forms Services 10.1.2.0.2
    (2.2)Client: Mozolla web browser on (intel) Solaris 10 for X86 .
    Mozolla web browser information:
    (2.2.1)[menu]-[Help]-[About web browser]display:
    Welcome to Mozilla 1.7 for Sun Java(TM) Desktop System
    Mozilla/5.0 (X11; U; SunOS i86pc; zh-CN; rv:1.7) Gecko/20070606
    (2.2.2)[menu]-[Help]-[About Plug-in]display:
    Java(TM) Plug-in 1.5.0_12-b04
    file name: libjavaplugin_oji.so
    Java(TM) Plug-in 1.5.0_12
    MIME type
    application/x-java-vm Java
    application/x-java-applet Java
    application/x-java-applet;version=1.1 Java
    application/x-java-applet;version=1.1.1 Java
    application/x-java-applet;version=1.1.2 Java
    application/x-java-applet;version=1.1.3 Java
    application/x-java-applet;version=1.2 Java
    application/x-java-applet;version=1.2.1 Java
    application/x-java-applet;version=1.2.2 Java
    application/x-java-applet;version=1.3 Java
    application/x-java-applet;version=1.3.1 Java
    application/x-java-applet;version=1.4 Java
    application/x-java-applet;version=1.4.1 Java
    application/x-java-applet;version=1.4.2 Java
    application/x-java-applet;version=1.5 Java
    application/x-java-applet;jpi-version=1.5.0_12 Java
    application/x-java-bean Java
    application/x-java-bean;version=1.1 Java
    application/x-java-bean;version=1.1.1 Java
    application/x-java-bean;version=1.1.2 Java
    application/x-java-bean;version=1.1.3 Java
    application/x-java-bean;version=1.2 Java
    application/x-java-bean;version=1.2.1 Java
    application/x-java-bean;version=1.2.2 Java
    application/x-java-bean;version=1.3 Java
    application/x-java-bean;version=1.3.1 Java
    application/x-java-bean;version=1.4 Java
    application/x-java-bean;version=1.4.1 Java
    application/x-java-bean;version=1.4.2 Java
    application/x-java-bean;version=1.5 Java
    application/x-java-bean;jpi-version=1.5.0_12 Java
    2.Install Config:
    (2.1)formsweb.cfg
    after install,
    /export/home/ias/OraHome_2/forms/server/formsweb.cfg
    include a section :
    # Page displayed to users to allow them to download Sun's Java Plugin.
    # Sun's Java Plugin is typically used for non-Windows clients.
    # (NOTE: you should check this page and possibly change the settings)
    jpi_download_page=http://java.sun.com/products/archive/j2se/1.4.2_06/index.html
    # Parameter related to the version of the Java Plugin
    jpi_classid=clsid:CAFEEFAC-0014-0002-0006-ABCDEFFEDCBA
    # Parameter related to the version of the Java Plugin
    jpi_codebase=http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,06
    # Parameter related to the version of the Java Plugin
    jpi_mimetype=application/x-java-applet;jpi-version=1.4.2_06
    (2.2)run oracle test form and my forms
    http://s216:7777/forms/frmservlet?form=test&userid=scott/tiger@orcl
    (Oracle simple test demo form)
    or
    tttp://s216:7777/forms/frmservlet?form=myform&userid=scott/tiger@orcl
    (2.3)browser dialogue window display:
    [title:Default Plugin]
    This page contains information of a type (application/x-java-applet;jpi-version=1.4.2_06)that can only be viewed with the appropriate Plug-in.
    Click OK to download Plugin.
    when I Click Ok ,display warning :
    File not found:www.sun.com, check filename ,try later.
    (2.4)change formsweb.cfg
    /export/home/ias/OraHome_2/forms/server/formsweb.cfg
    change:
    jpi_mimetype=application/x-java-applet;jpi-version=1.4.2_06
    to:
    jpi_mimetype=application/x-java-applet;
    (2.5)run again oracle test form and my forms
    http://s216:7777/forms/frmservlet?form=test&userid=scott/tiger@orcl
    (Oracle simple test demo form)
    or
    http://s216:7777/forms/frmservlet?form=myform&userid=scott/tiger@orcl
    (2.6)Problem:
    myform and test(Oracle simple test demo form) can run and display,
    but all buttons(when click) not work(no response);
    all meuns not work...........
    How to Solve this problem?
    thanks in advance.

    The currently supported versions with patches installed are as follows:
    <li>10.1.2.3 (10.1.2.0.2 + patch 5983622)
    <li>11.1.1.4 (11.1.1.2 or 11.1.1.3 + patch 11060983 : this also requires WLS 10.3.4)
    Fusion Middleware (FMw) 11 downloads are available from here:
    http://www.oracle.com/technetwork/middleware/weblogic/downloads/index.html
    Patches are only available to customers with access to MyOracleSupport (http://support.oracle.com)
    For Forms/Reports users, look for the FMw download titled "Portal, Forms, Reports and Discoverer". The distribution includes all that is necessary to design and deploy your applications. Note that WebLogic Server is also required and is a separate download (from the same page). Be sure to carefully review the installation instructions before attempting the process. It may also be helpful to review MyOracleSupport note 1073776.1.

  • Quicktime Movie Controller Will Not Work in Web Browser

    Regardless if it's Safari or Firefox, I cannot click any of the buttons on the movie controller when viewing my movies in a web browser. They work as intended in iWeb, however.

    Well I figured it out. Apparently if the video is too low on the page it will not play. I had to change the Y value, moving it up, and it would magically play. Weird...

  • User Authentication for subfolder not working in Web Browser

    We are using Oracle Application Server 10.1.2.3 and Database Server 10.2.0.5 for our application.
    One of the functionalities of the Application is to send emails with attachments.
    The logic is that the Application would generate the attachment file on the Application Server.
    Then a database package uses Oracle's utl_http package/procedures(more specifically utl_http.request_pieces where the single argument is a URL) to pick up the file from the Application Server via URL, attach the file and send the email.
    Exchange and Relay Server is also set in the Application.
    The problem is that the folder containing the folder which stores the attachments is having user authentication set.
    Example : The main folder is /apps/interface, this folder requires a valid user when it is accessed via URL on a web browser.
    Alias created in httpd.conf
    Alias /int-dir/ "/apps/interface/"
    The folder /apps/interface/email/ is the folder where the attachment files are generated and stored.
    Application Server : 10.12.213.21
    Database Server : 10.12.213.22
    Email Server : 10.12.213.44
    Configuration as per httpd.conf
    Alias /int-dir/ "/apps/interface/"
    <Location /int-dir/>
    AuthName "Interface folder"
    AuthType Basic
    AuthUserFile "/u01/app/oracle/as10g/oasmid/Apache/Apache/conf/.htpasswd"
    require user scott
    </Location>
    <Location /int-dir/email>
    Options Indexes Multiviews IncludesNoExec
         Order deny,allow
         Deny from all
         Allow from 10.12.213.21
         Allow from 10.12.213.22
         Allow from 10.12.213.44
    </Location>
    Using the above configuration the Application is able to attach the files and send the email, however, when we access the following URL :
    http://10.12.213.21:7778/int-dir/ - it prompts for user authentication
    However if we use the following URL :
    http://10.12.213.21:7778/int-dir/email/ - it does not prompt for user authentication, and all the files in the folder are displayed in the browser.
    I have tried so many things including AllowOverride, .htaccess, but i am not able to get user authentication for the email folder.
    Please help me if you can.
    Thanking you in advance,
    GLad to give any more information that i can.
    dxbrocky

    Thanks for your response.  I fixed the problem by selecting "full site" or "full website" at bottom of the web page.  After making this selection the zoom function returned.  Thanks again for your interest.

  • "Writer" Module not working in web service mode

    Hi,
    I designed a experiment to do a prediction work and automatically write the result to AzureSqlServer.
    I published  a web service from the experiment to trigger the prediction procedure, it worked very well until February. But from then on, the database had never received any data from the module triggered by web service though the web service always
    run successfully.However, when I directly run the experiment, the writer works again.
    I noticed the experiment dashboard has a new function that can switch between experiment view and web service view. In web service view, all the modules that the “web service output” module not depend on turn grey, including the "writer".  
    Is that the reason?

    When you called the web service from the test dialogue, did it work? If you get any error, please paste it here.
    Also, please take a look at the example in
    this doc which also uses a writer. Note that if you have a writer writing the results to a destination, you typically don't need a web service output. See the below images, 1 with Web service output, another with a Writer. The writer needs to
    be configured.

  • Airport Extreme Card Not Working Properly (Web Browsing Slow)

    Hello people of apple discussions,
    I have the original MacBook Pro with Mac OS X 10.5.7 installed on it. And I have a problem, my airport extreme card is not functioning properly like when I go on the internet, it comes up with the server "www.google.com" cannot be reached or the same with Yahoo! Back when it had 10.4 it was functioning properly with very high speeds. But, all the other PCs in the house gets good internet even my iPhone and the router is functioning properly. It's been like this since for about 6-8 months and i am very upset with my mac!:|So can I have some help or any suggestions!
    Message was edited by: mr.ts

    Have you tried contacting your ISP? Sometimes they can help you optimize your settings. Such as DNS server numbers. I had a simullar problem and found out my DNS settings were wrong.
    Do you have other computers that use the wireless single? If not you might look into your router to see if maybe something is wroung with it. You can always go to a wifi hotspot or a friends house and see how the connection is there. If it seems normal then you know it is your ISP or your router. If not then it might be a laptop problem.

  • Kespensky pure does not support my web- browser.

    Iam running a 64 bit Turlon processor in a hp laptop. The operating system is window 7 ultimate. I have recently installed kaspersky Pure ver 9.1.0.124. internet provider is sybeam.
    Since I finally got rid of internet explore using Firefox nothig seems to work. the computer in noticbly slower. and get mesages like The version of :
    "password manager does not support your web-browser
    Reason: TypeError: components_ByID(KPMAUTIFILL_CID) is undefined.
    Also my trash is no longer functioning, the scan doesn't work, and the other small hangups.
    I don't know how you and Kaspersly interface but I would like to get the system bac & running.
    I appreciate your assistance in the matter,
    Thanks,
    John C Trask

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • The changes made in the WAD web template is not replicating on web browser

    Hi,
    We are using BI 7.0 WAD. Suppose if i create a one web template and if i run it ...it is working fine.
    If i change the present web template and if i do change anything on the present web template and if run this web template it is giving the previous result....it is not reflecting the present changes.
    The changes made in the WAD web template is not replicating on web browser result.
    I went to transaction SMICM, then choose "Goto" from the top menu. From there, go to HTTP Server Cache, then choose Invalidate, then choose Global in system. With this thing also it didnt slove.
    thanks

    Clear your browser cache also and see if the changes are visible.....
    Arun

  • LOVs not working in Webi Report for SAP BO 4.1 SP 2 Patch 3

    Hello ,
    I have developed reports and universes in SAP BO 4.0 SP 5 and i have migrated those reports to higher version of BO which is 4.1 SP2 Patch 3.
    My universe is working fine with LOVs but when i run the webi report , the LOVs arent working.
    have anyone facing the same issue. any idea why the LOVs arent working on higher version.?

    Hi Victor,
    The List of values we will assign in universe in order to get filtered data works on universe query panel
    but the same objects when i am using in report(webi report) , the List of values are not working .i.e
    they are not getting displayed in webi report.
    for ex: i have country object having country names as LOVs and state objects having state names as LOVs . Now when i select Country value , the LOVs of state objects should get filtered and shows only states which belongs to country .
    the above logic is not working in webi report , i am only able to select country and when i go for state, the state names do not get filtered.
    please let me know why this is happening in the SP2 patch 3 version and its working fine for SP2  , but the chrome issue gets solved after applying patch 3 and not if we only upgrade to SP2.
    the webi reports are not working in chrome browser if we using SAP B04.1 SP2 and lower version
    but the LOVs are not working in SAP BO 4.1 SP 2 patch 1, 2,3.
    kindly help me with the issue

  • Changes made in the WAD web template is not replicating on web browser

    Hi,
    We are using BI 7.0 WAD. Suppose if i create a one web template and if i run it ...it is working fine.
    If i change the present web template and if i do change anything on the present web template and if run this web template it is giving the previous result....it is not reflecting the present changes.
    The changes made in the WAD web template is not replicating on web browser result.
    Thanks in adv
    pinky

    Just to add.
    WAD templates are stored as HTML in the HTTP cache.
    Whenever you make changes to the template - it is good practice to delete / invalidate the HTTP Server cache.
    This can be done from
    SMICM --> Goto (menu bar ) --> HTTP Server cache --> Invalidate --> GLobal
    ust to make this thread complete..
    However this is usually done for 3.x web templates since they run off the ABAp stack - not too sure about the JAVA stack - guess portal cache has to be cleared too..

  • Home and end key not working on ubuntu 14

    I am on Firefox on Ubuntu 14.
    Home and END keys do not work properly as they do not take me to the top or the bottom of a page. Caret browsing (F7) is not activated. This problem persists with all add-ons disabled.

    Shortcuts just for reference:
    [https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly#firefox:linux:fx35]
    I understand that there are two short cuts that do not work with caret browsing turned off. Please also see this menu:
    Options > Advanced > disable "Always use the cursor keys to navigate within pages" option present in "General" tab.
    If this is not the issue, please also contact the party that compiles Firefox specifically for Ubuntu, unless you are using the linux from [https://support.mozilla.org/en-US/kb/install-firefox-linux here]?

  • Satellite L850 - Special function key not working properly

    Hi Everyone,
    I had Satellite L850 (pskg8a-07f001) running windows 8 64 bite for just 2 months.
    Just within this week, the special function key not working, each time I start the pc, i have to go into toshiba desktop assist then function key then click ok, it will working.
    But the touch pad has been set as enabled, also under keyboard setting has been set as special function mode. But don't know why each time start the pc have to go into function key box then click ok.
    When I bought it everything is ok, i can use the special function key to turn up and down the volume and disable wireless...etc
    Please advise. Thks a lot!

    Take a look here:
    Function key changes in Satellite and Qosmio 800 series
    http://aps2.toshiba-tro.de/kb0/TSB2903E00000R01.htm
    You can use the traditional FN + F key mode or just an F key mode.
    This can be enabled and disabled in BIOS or the HWSetup
    In BIOS go to Advanced -> System configuration -> Function key mode
    This mode can be changed
    Also be sure that Function Button option is enabled too

Maybe you are looking for