Captivate 8 HTML drop-down list?

Is there a widget to drop to the bottom of the box (or combo) for 8 Captivate that will correctly export to HTML?

The interaction of the drop-down list is functional in HTML5. In my blog the inserted movie is SWF, but I checked in HTML5 as well:

Drop-down list Interaction - tips - Captivate blog

Tags: Adobe Captivate

Similar Questions

  • Is it possible to add a ToolTip to a hot spot of HTML drop-down list?

    Is it possible to add a ToolTip to a HTML drop down or expand hotspot?  The hot spot will appear as green text on the screen to help, but short to write a statement in the help to the users screen, click on the text, I have not found another way to express this. A ToolTip is preferable to a statement that is written on the page, because when I publish a guide to help, I carefully go through the document and remove all these references to "by clicking the green text. It would be ideal to have a mouse over ToolTip as there is a hyperlink. Is there a way to do this? If this isn't the case, Adobe can think to add this feature? Thank you.

    Hello

    For starters, you can apply a conditional tag to build the text that indicates what's happening, and then use a conditional Expression to build to remove this text when you target an output that should not have.

    Add a ToolTip, it is quite easy, but is not intuitive.

    Select the text of the menu drop-down, and then look at the HTML code. Should look like this:

    Modify the code as follows. Right after the class = 'dropspot' hand, insert the following text:

    ALT = "Insert your text here" title = "insert your text here."

    When you are finished, it should look like this:

    And after than that, here what my link looks like when I hover:

    See you soon... Rick

  • Text of default list - see the HTML drop-down list as an indicator, no show in the list

    I would like to have the text of the 'selected option', 'COLOR' to be visible as a hint, but did not appear as a choice in the drop-down list.

    Existing code as follows:

    < select name = "color" id = "color" >

    < option selected = "selected" > COLOR < / option >

    < Option > BLACK < / option >

    < Option > COAL < / option >

    < / select >

    Thank you...

    Something like that...

  • My index drop-down list of bookmarks installation does not include an option to export my absolute Favorites HTML file for security purposes. How can I do a safety case separated from my favorites please?

    I'm on version 4.0.1

    The drop-down list of bookmarks index includes only:
    Bookmark this page
    View all bookmarks
    The toolbar of bookmarks (export done on this etque ease)
    Recent tags
    Recently bookmarked
    Download bookmark modules
    These stars following is a complete list of all my favorites.

    The Tools dropdown has no export function is

    the help file "export bookmarks to an HTML file indicates it is a menu drop down called"Organize bookmarks"- is not a."

    I have an urgent need to save this file because I have to do a reinstall of Windows and my 'C' drive will be erased!

    Thank you, Richard Townsend

    Organize bookmarks has been renamed to display all bookmarks in versions of Firefox 4 +.

  • Adobe Captivate 4 Quiz (Matching) drop-down list too small font size.

    Hello

    We use Adobe Captivate 4.  Quiz (matching).  Exported to SWF format.

    The drop-down list the fonts are small. We want to use a larger font in the drop-down list, but couldn't find a way.

    Can anyone help?

    Thank you

    Fox

    Hello

    Formatting of the slides in Question of CP is sometimes a pain. I can't give you a correct answer, but it would be great if you filed a feature request to the team to have more control over the styles used in this drop-down list (the link is on the homepage of this forum). If we are many to demand improvements, fine higher up on the priority list.

    As you've probably discovered, in the properties of the corresponding drop down lists Question slide you can change font color, the font size not. My correct solution is to choose a font that gives the best result, certain fonts really look bigger than the others. This is not always compatible with the styles in the rest of the film, but I fit all of the text in Question slides to this font.

    Regret not to be able to help. Question slides are in the folder, but in SWC format, and I can not open these files, even if I installed Flash CS4. Maybe a Flash-wise guy will appear automatically in to help you.

    Lilybiri

  • Drop-down lists don't drop-down list in Firefox 5

    Since upgrading to Firefox 5, drop-down lists on Web sites, no longer drop-down list. They work OK in IE, Chrome, Safari, et al, and they worked in FF4 - simply no FF5.
    This seems to happen on all websites but I can't believe that something this blatant has not been noticed by someone else, so I think that something unique to my setup.
    I can't fill the box "It happened": the drop-down list does not work!

    Same problem here. Win 7 64 bit, after update to FF5 no Dropdown HTML more doesn't work. I try with all the addons disabled and with a new profile, nothing works for me.

    Pleas help!

  • Erase contacts from Windows mail in the drop-down list.

    I am ready to send my email. I type the first letter of the 'c' reception A box goes down with four different recipes that begin with 'c '. How can I delete the ones I don't want from the drop-down list? I removed them from the list of contacts, but they always appear in the drop-down list.

    Thanks in advance for any help!

    Jim

    How to delete registration completion email in Windows Mail
    http://www.Winhelponline.com/articles/245/1/how-to-clear-the-email-auto-complete-entries-in-Windows-mail.html Bruce Hagen
    MS - MVP October 1, 2004 ~ September 30, 2010
    Imperial Beach, CA

  • How to set the number of visible items in the drop-down list

    How can I specify the number of elements is visible in the list when I open a drop-down list? By default, I see 5 items, but I want to extend that to 10.

    Reference doc: http://www.blackberry.com/developers/docs/airapi/1.0.0/qnx/ui/listClasses/DropDown.html

    for example

    var dd:DropDown = new DropDown();
    DD.x = x;
    DD.y = y;
    dd.rowCount = 10 ; Set this value to the need... like for example 10
    CDI Width = w;
    CDI Height = h;

    ...

  • How can we change the visibility of the drop-down list after its creation?

    I create a QML document with three drop-down lists.  Depending on how "trans_type" is selected, only to drop Extra should be displayed.  If the option "account" is selected, the drop-down list is visible and the DD category is hidden.  The reverse is true if the 'category' option is selected.

    Here's how I build my QML document:

    void Testing::updateFields()
    {
        if (m_form.isNull())
            return;
    
        // Clear all fields from the form
        m_form->removeAll();
    
        // Clear the internal mapping
        m_fields.clear();
    
        //get the transaction page ready
        QmlDocument *qml = QmlDocument::create("asset:///transaction.qml").parent(this);
    
        DropDown* trans_type = qml->createRootObject();
        trans_type = DropDown::create().title("Transaction Type");
        trans_type->add(Option::create().text("Accounts").value("0"));
        trans_type->add(Option::create().text("Categories").value("1"));
        trans_type->setSelectedIndex(0);
        connect(trans_type, SIGNAL(selectedIndexChanged (int)), this, SLOT(onDDChange(int)));
        m_form->add(trans_type);
    
        DropDown* account_dd = qml->createRootObject();
        account_dd = DropDown::create().title("Account");
        account_dd->add(Option::create().text("No Account").value("0"));
        //... code to populate account drop down here...
        account_dd->setSelectedIndex(0);
        m_form->add(account_dd);
    
        DropDown* category_dd = qml->createRootObject();
        category_dd = DropDown::create().title("Category").visible(false);
        category_dd->add(Option::create().text("No Category").value("0"));
        //... code to populate category drop down here...
        category_dd->setSelectedIndex(0);
        m_form->add(category_dd);
    
    }
    

    Everything is displayed properly on the page.  onDDChange is called and it shows a Toast that the option has been selected.  Here is what I currently have in onDDChange:

    void Testing::onDDChange(const int &info)
    {
        QString msg = "Switched To: ";
        if(info == 0) {
            msg = msg + "Account";
        } else if(info==1) {
            msg = msg + "Category";
        } else {
            msg = msg + "Unrecognized";
        }
        showToast(msg);
    }
    

    I can't figure out how to get the drop down lists to be visible/hidden depending on the needs.  There is a function "setVisible()" for the drop, but I can not understand how to operate without the app crashing.  http://developer.BlackBerry.com/Cascades/reference/bb__cascades__dropdown.html#function-setVisible-v...

    My questions are:

    1. How can I change the visibility of the appropriate dropdown lists in a different function when the status of the main drop-down list is changed?

    2. is there a way to define an id for drop-down lists?  If not, how am I supposed to go into the drop-down lists in a variable later so I can receive their value or change the visibility?

    Any help would be great.  I've been struggling with this for a while.

    There are a number of methods you could use signals and slots between your code and the QML or something simple is assign "objectName" as a property, then this search in C++.

    http://developer.BlackBerry.com/Cascades/documentation/dev/integrating_cpp_qml/

    Something like

    DropBox db = mRootContainer->findChild("dropboxname");
    db->setVisible(true);
    
  • SendTo shortcuts do not appear in the drop-down list sendto

    I just have to move on to Windows 7 and the drop-down list sendto does not work properly.  I have consulted the folder sendto successfully by the username C:\"Users\Your '\AppData\Roaming\Microsoft\Windows\SendTo.  There are shortcuts and standard destinations that are not appearing in the actual drop-down list.  The only destinations referenced when right click and access the sendto method are the disk of the user and a sendto folder that places the documents to the location C:\"Users\Your username"\AppData\Roaming\Microsoft\Windows\SendTo.

    Hello

    Make sure that you are logged on as administrator.

    Start - type in the area of research-> shell: SendTo
    Press enter

    Shell commands
    http://www.SevenForums.com/tutorials/4941-shell-command.html

    =======================================================

    If necessary:

    You use professional, Ultimate, or Enterprise (part of a domain)
    where could be set in Group Policy (GPedit)? Antivirus/security, supposed
    refinement of public and other services could be the cause of the issue.

    Try to use a clean boot, and then check by removing and add a.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or
    Windows 7
    http://support.Microsoft.com/kb/929135

    How to change, add or remove startup programs in Windows 7
    http://www.SevenForums.com/tutorials/1401-startup-programs-change.html

    Autoruns - free - see what programs are configured so that it starts automatically when your
    system boots and you log in. Autoruns is also the full list of registry and files
    locations where applications can configure start automatic settings.
    http://TechNet.Microsoft.com/en-us/sysinternals/bb963902.aspx
    ====================================================

    Other methods.

    1 follow these steps to remove corruption and damaged/missing system files that may have a role of repair or replacement, and it must be eliminated.

    Run DiskCleanup - start - all programs - Accessories - System Tools - Disk Cleanup

    Start - type in the search box - find command top - RIGHT CLICK – RUN AS ADMIN

    sfc/scannow

    How to fix the system files of Windows 7 with the System File Checker
    http://www.SevenForums.com/tutorials/1538-SFC-SCANNOW-Command-System-File-Checker.html

    Then run checkdisk (chkdsk).

    How to run check disk in Windows 7
    http://www.SevenForums.com/tutorials/433-disk-check.html

    ------------------------------------------------------------------------------------------------

    2. troubleshooting questions Menu context (right click) are a process of eliminating exercise.

    Make a right-click is slow or weird behavior caused by context menus managers
    http://WindowsXP.MVPs.org/slowrightclick.htm
    and here:

    Manage the entries in the context menu for files, folders, disks, and objects in the Namespace
    http://WindowsXP.MVPs.org/context_folders.htm

    The ShellExView utility displays the details of shell extensions installed on your computer and allows
    easily disable you and enable each shell extension.
    http://www.NirSoft.NET/utils/shexview.html

    ShellMenuView is a small utility that displays the list of menu items which appeared in the context
    menu when you right click on a file/folder on Windows Explorer and allows you to easily disable unwanted
    menu items.
    http://www.NirSoft.NET/utils/shell_menu_view.html

    How to change or remove items from the right click Menu.
    http://www.WinVistaClub.com/E11.html

    =====================================================

    If you have exhausted these try a repair Installation that allows you to
    keep the programs and data, although redundant backups are always a
    good idea. It is less likely to help you if you have not used the above
    methods such as the same parameters and conditions exist.

    I hope this helps.

    I hope this helps.

  • DropUp instead of the drop-down list?

    I would like to add a drop-down list to a container that is anchored to the bottom of the screen.  In this test the drop continues to fall in the direction towards the bottom, even if she turns off the screen.  Is there a way to make it act as a DropUp?

    Thank you

    Nick

    Hey nwgarner,

    There is a property for the class drop-down menu called showListAbove that allows you to get what you want (set it to true). Here is a link for more details on this topic:

    http://www.BlackBerry.com/developers/docs/airapi/1.0.0/QNX/UI/listclasses/dropdown.html#showListAbov...

    hope that helps. Good luck!

  • drop-down list new folder option is no longer on the desktop

    Hello dare how Yall are

    I got a few Yes troubel

    drop-down list new folder option is no longer on the desktop

    I don't know what to do dat

    Thank you Sha

    You have installed chrome? It is an update of Chrome, (mid), is responsible. Here are two patches.

    How to remove and restore the default context Menu items 'New' in Windows 7 and Windows 8
    http://www.SevenForums.com/tutorials/28677-new-context-menu-remove-restore-default-menu-items.html

    If still no joy, see the 'response' by Linda Yan in this thread.
    http://social.technet.Microsoft.com/forums/en-us/w7itprogeneral/thread/97de8a2a-12f2-4381-A409-a78f4ae551cf/#99395761-56de-4a76-8C2A-eab498ad735a

    Tip: When you save the text in Notepad, the default file format is .txt. Replace all files.

  • Width of drop-down list and the number of drop-down list values

    How to increase / decrease the width of a drop-down list on the screen of your interview? In addition, how you increase the number of menu options drop-down user, some of my options in drop-down list don't show up. This shows only 3 points:...

    For OPM 10.4:

    Increase the number of visible items in a drop-down list

    There are two options:

    1. make a regular drop-down list instead of a list of drop-down list box. Regular drop-down lists always display all items, regardless of the length of the list. To do this, set "enable-search-comboboxes = false" in the appearance.properties file. "

    2. increase in the search results max for the combo box in the file appearance.properties, for example 'search max-results = 20' (or another number as appropriate)

    See article OPM the User Guide for more details: http://docs.oracle.com/html/E54499_01/toc.htm#Interviews%20and%20flows/Customize_Web_Determinations.htm#Change4

    I have a vague memory that the increase in the width of the drop-down lists is a bit more tedious. I'll take a look and post here...

    See you soon,.

    Jasmine

  • Drop-down list Hotspot based on another topic


    I would like to create a Hotspot of drop-down list that automatically displays the content to another HTML file.

    Is this possible?

    This would be similar to a pop-up auto size except that the content of the HTML code fell in the page parent rather than displayed in a pop-up window.

    Thank you

    Amber is on site. To do this use an inline frame.

    See you soon... Rick

  • I downoladed and tried to install CS6 on my computer after that machine has been upgraded to Windows 10.  I get a message that says "serial number is not for the product." The drop-down list does not contain CS6 Design and Web Premium.  What should I do

    I downloaded and tried to install CS6 on my computer after that machine has been upgraded to Windows 10.  I get a message that says "serial number is not for the product." The drop-down list does not contain CS6 Design and Web Premium.  What should I do to get loaded and enabled on my computer?

    That fall down, and the serial number you provide must identify the previous version that you upgraded because CS6 is an upgraded version in your case.

    Error "this serial number is not for a product calling it" | CS6, CS5.5, CS5

    http://helpx.Adobe.com/Creative-Suite/KB/error-serial-number-qualifying-product.html

Maybe you are looking for