How to add click box/button to QUIZ slides??

We have a basic quiz for our online course. At the top of the
quiz we have a navigation bar with next, back, main menu, help, etc
which we use a click box to make link.
However, when we're on a quiz slide the click box and button
option are grayed out. You can't access them at all. How can we fix
this?? We HAVE to have the top navigation be functional as it is
for the rest of the slides. Help!

I'm having the same general problem you are.
I got this response a few days ago:
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=464&threadid=1374767
Its a little different question but I think the answer can be
applied to both: Its not in the program to allow users to fully
customize question slides. Unfortunate, but a reality I guess.
-mphair

Similar Messages

  • How to add an audio click box on a quiz slide - adobe captivate 6?

    Hi,
    I'm trying to add an audio click box on a question slide. It works brilliantly on normal slides but theres no option to add a click box on quiz slides.
    I'm trying to add audio on click. So, when somebody clicks that area they will hear a sound. Is there a way to do this on a question slide?
    Thanks

    Replace those old click boxes by shapes configured as buttons. Have a look at this post:
    http://lilybiri.posterous.com/want-a-button-on-question-slide-in-captivate
    Lilybiri

  • How to add a custom button in WD screen to call a workflow in siebel?

    Hi All,
    We have a requirement to have a custom button at the summary screen(after the rule execution) "Create Opportunity", on clicking on it a new opportunity record should be created in Siebel. As we know the "Save" link calls "PolicyAutomationSaveSession" inbound web service method and saves the information in session table and we can modify the PreSession and PostSession workflows. But we are not sure how it calls the service method and where is the mapping defined.
    Can you please help me on how to add a custom button and how to invoke a workflow in siebel side to implement this requirement?
    Also is there any document which can help me to add a custom button in screen and to add the code behind the button?
    Thanks in advance!!
    Regards,
    Subhradeep

    Subhradeep,
    Closing a Web Determinations window is essentially the same as closing any HTML window. It involves javascript, which you would have to add to the Web Determinations templates.
    Essentially the javascript command to close a window is {{window.close}} or {{top.close}}
    For timing, you might be able to use the setTimeout function of Javascript (see: http://www.w3schools.com/jsref/met_win_settimeout.asp)
    At the risk of exposing exactly how bad my javascript skills are, I have attached a super-simple html fragment, a page that closes itself after 3 seconds. It may help you get started in the right direction. In general closing a window is a fairly dubious activity and is often not permitted by certain browsers. This html page at least works in Internet Explorer.
    <html>
         <head>
         <script language="JavaScript">
              setTimeout(closeMe, 3000);
              function closeMe() {
                   alert("This window will close");
                   top.close();
         </script>
         </head>
         <body><B>This window will close in three seconds</B></body>
    </html>
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to add a push button on an ALV grid  ?

    Hi,
    How to add a push button on an ALV grid, using ON_TOOLBAR, ON_USERCOMMAND Methods. Clicking on that push button, a new screen has to be displayed.

    Hi,
            Assuming that you want to have a "push-button" column, i.e. push-buttons within an ALV grid then you need to implement the following steps:
    (1) Set the style of the column as button
      ls_fcat-style = CL_GUI_ALV_GRID => MC_STYLE_BUTTON.
    (2) When the user pushes the button event BUTTON_CLICK is triggered. Thus, define an appropriate event handler method.
    <b>Reward points</b>
    Regards

  • How can a click box support CTRL/SHIFT/ALT in Captivate?

    Hi all,
        How can a click box support CTRL/SHIFT/ALT in Captivate ?
        i.e., It can support click, double click, and right click, can it support "CTRL/SHIFT/ALT" when clicking?
        I need this feature because some user operation requires this.
        We're using Captivate 5.
        Could anybody give me some suggestion?  Tahnks.
    Joseph

    Although you can add Ctrl, Alt and Shift shortcuts to click boxes, they may or may not work, depending on the context where the presentation is running.
    The following comments relate to Captivate 5 presentations.
    If you publish the presentation as an exe file, Shift and Ctrl click boxes will work, but not Alt click boxes. Right-clicks won't be detected, either.
    If you publish as htm + swf for viewing in a browser, you can avoid the right-click problem, but which  shortcuts get detected depends on which browser is being used.
    I have tested Internet Explorer, Firefox, Chrome, Opera and Safari, with the following results:
    Alt: No browser passes Alt shortcuts through to the Flash player. If the Alt shortcut is meaningful to the browser itself, that's what happens (e.g., Alt+T will display the Tools menu in Internet Explorer; otherwise nothing happens). Note: Alt click boxes work when you test the presentation in an F8 preview window, but they don't work when the presentation has been published, so the F8 preview is misleading.
    Ctrl: All except Internet Explorer pass all Ctrl shortcuts to the Flash Player, so they are generally safe to use if you can ensure the user will not view the presentation in IE. IE keeps most Ctrl shortcuts for itself, but there are a few (e.g., Ctrl+G) that IE passes to Flash, so you can use Ctrl+G freely, knowing it will work in every browser. Ctrl+M and Ctrl+U are two others
    Shift: All, including Internet Explorer pass Shift shortcuts to the Flash Player. I have sometimes therefore set up a simulation with click boxes that look for a Shift+ shortcut key instead of Alt+, and included an apologetic prompt to tell the user to do so.
    It's a mess! It is essential to test your simulation in whatever environments it will be used in, and adapt it if some shortcut you really want to use doesn't work.
    Trevor

  • How to add check box in SAP B1 grid controls..

    hi all,
    Anyone know how to add check box in SAP grid control?
    It will be great if you could show me some sample code.
    thanks.
    regards,
    sohch

    Hi Sohch,
    1. First of all you should define the Column in a matrix as it_CHECK_BOX. Like
            oColumns = oMatrix.Columns
            oColumn = oColumns.Add("chk_YesNo", SAPbouiCOM.BoFormItemTypes.it_CHECK_BOX)
            oColumn.TitleObject.Caption = "YesNo"
            oColumn.Width = 60
            oColumn.Editable = True
    2. Bind it with a DBDataSource as defined
            oColumn = oColumns.Item("chk_YesNo")
            oColumn.DataBind.Bind("UDTable", "U_YesNo")
    3. Make Sure that the value that is being put into the Database is either 'Y' or 'N'.
    Hope this Helps
    Rizwan Hafeez
    Team Lead
    SAP Addon Development Section
    Abacus Consulting - Pakistan

  • How to add the REFRESH button in OOPs ALV grid

    how to add the REFRESH button in OOPs ALV grid

    Hi Naidu.
    Check the below code:
    Local Class Definition and implementation For events handeling
    CLASS LCL_EVENT DEFINITION .
      PUBLIC SECTION.
        METHODS :TOOLBAR FOR EVENT TOOLBAR OF  CL_GUI_ALV_GRID
                         IMPORTING E_OBJECT,
                 USER_COMMAND FOR EVENT USER_COMMAND OF CL_GUI_ALV_GRID
                         IMPORTING E_UCOMM.
    ENDCLASS.    
    CLASS LCL_EVENT IMPLEMENTATION.
      METHOD TOOLBAR.
        WA_TOOL-FUNCTION = 'ZFC1'.
        WA_TOOL-TEXT     = 'TEST'.
        WA_TOOL-ICON     = '@EA@'.
        APPEND WA_TOOL TO E_OBJECT->MT_TOOLBAR.
      ENDMETHOD.             "DISPLAY
      METHOD USER_COMMAND.
        IF E_UCOMM = 'ZFC1'.
              ENDIF.
      ENDMETHOD.                    "USER_COMMAND
    ENDCLASS.                    "LCL_EVENT IMPLEMENTATION
    MODULE STATUS_0200 OUTPUT.
      SET PF-STATUS 'ZALV_BTON'.
      SELECT * FROM VBAK INTO TABLE GT_VBAK
               UP TO 30 ROWS.
    **** CREATE CONTAINER OBJECT
      CREATE OBJECT MY_CONTAINER
        EXPORTING
          CONTAINER_NAME              = 'CC1'
         EXCEPTIONS
          CNTL_ERROR                  = 1
          CNTL_SYSTEM_ERROR           = 2
          CREATE_ERROR                = 3
          LIFETIME_ERROR              = 4
          LIFETIME_DYNPRO_DYNPRO_LINK = 5
          OTHERS                      = 6 .
    ****** GRID TO CONTAINER
      CREATE OBJECT ALV
          EXPORTING
          I_PARENT          = MY_CONTAINER
         EXCEPTIONS
          ERROR_CNTL_CREATE = 1
          ERROR_CNTL_INIT   = 2
          ERROR_CNTL_LINK   = 3
          ERROR_DP_CREATE   = 4
          OTHERS            = 5.
      CREATE OBJECT OBJ.
      SET HANDLER : OBJ->TOOLBAR FOR ALV.
      SET HANDLER : OBJ->USER_COMMAND FOR ALV.
    ****** ALV DISPLAY
      CALL METHOD ALV->SET_TABLE_FOR_FIRST_DISPLAY
        EXPORTING
          I_STRUCTURE_NAME              = 'VBAK'
        CHANGING
          IT_OUTTAB                     = GT_VBAK[]
        EXCEPTIONS
          INVALID_PARAMETER_COMBINATION = 1
          PROGRAM_ERROR                 = 2
          TOO_MANY_LINES                = 3
          OTHERS                        = 4.
    ENDMODULE.                 " STATUS_0200  OUTPUT
    *&      Module  USER_COMMAND_0200  INPUT
    *       text
    MODULE USER_COMMAND_0200 INPUT.
      IF SY-UCOMM EQ 'BACK'.
        LEAVE PROGRAM.
      ENDIF.
    ENDMODULE.                 " USER_COMMAND_0200  INPUT
    Regards
    Kumar M

  • How to add a link button in system form?

    how to add a link button in system form in the edit text?

    HI
    see the following code
    This creates an item "55" caption, and exittext ("550") and creates linked button "51" linked to "550"
            oItem = otmpform.Items.Add("55", SAPbouiCOM.BoFormItemTypes.it_STATIC)
            With oItem
                .Top = 315 + 30 + 15
                .Left = 12
                .Width = 100
                .Specific.Caption = "Többlet"
            End With
            otmpform.DataSources.UserDataSources.Add("550", SAPbouiCOM.BoDataType.dt_SHORT_TEXT)
            oItem = otmpform.Items.Add("550", SAPbouiCOM.BoFormItemTypes.it_EDIT)
            With oItem
                .Top = 315 + 30 + 15
                .Left = 120
                .Width = 100
                .Specific.DataBind.SetBound(True, "", "550")
                .AffectsFormMode = True
                .Description = otmpform.Items.Item("55").Specific.Caption
                .DisplayDesc = True
            End With
            oItem = otmpform.Items.Add("551", SAPbouiCOM.BoFormItemTypes.it_LINKED_BUTTON)
            With oItem
                .Top = 316 + 30 + 15
                .Left = 120 - 14
                .Width = 13
                .LinkTo = "550"
                .Specific.LinkedObject = SAPbouiCOM.BoLinkedObject.lf_GLAccounts
            End With
    Regards,
    J.

  • How to Add C3PO Toolbar Buttons with GroupWise in C#

    Hello
    i try How to Add C3PO Toolbar Buttons with GroupWise in C#. I do all like
    i read here
    http://support.novell.com/techcenter...a20000906.html
    But i can see any result
    i create file with Wizard(witout project)
    Then i add this file to my EXE project
    and add 2 button "Reg C3PO"(RegC3po();) and "Unreg C3PO"(UnRegC3po();)
    and init
    what i do wrong?
    i try find ansver but find only this
    http://newsportal.novell.com/article...sup.gwc3po#925
    what its mean?
    news:SR%Zg.16416$[email protected]:
    about this question
    http://newsportal.novell.com/article...sup.gwc3po#673
    C3POs still don't work in the address book?
    Kirill

    Kirill wrote:
    > Hello and Merry Chritmas :)
    >
    > regsvr32 onlu for DLL. My project create EXE file :(
    >
    > Kirill
    Ups......
    You'll, according to the readme generated by your C3PO Wizard, have to run
    Regasm.exe <your C3PO server>
    That will create the needed regkeys...
    Also, you might have to add the typelib wrapper and assambly to the GAC, bu typing:
    Gacutil -i <your C3PO server>
    Best Regards
    Tommy Mikkelsen
    IT Quality A/S
    Denmark
    Novell Developer Forums SYSOP
    Please Report back any success or failure, That way we all learn
    Sorry, but no support through email
    "I hate bugs".......Tommy Lee Jones, MIB
    Be a GroupWiseR, go http://www.groupwiser.net

  • How to add a close button to a edge animation ?

    How to add a close button to a edge animation ?

    Welcome to our community, Laurie
    You posted this in the FlashHelp section. Is that your actual
    output type? If so, you will need to make edits to the FlashHelp
    using Adobe Flash.
    Cheers... Rick

  • Captivate crashes with Automatically add click boxes

    Ive found a problem with captivate 2 which causes it to crash
    (it always crashes on my windows vista systems, but i dont think
    captivate 2 is compatible with windows vista yet).
    If i put a check in the box for "automatically add click
    boxes" under recording options, it will crash fairly soon after i
    start recording. Captivate 1 doesnt crash at all on the same
    system.
    Does anyone have any ideas of what i could try? (this is a
    must have option, without automatically add click boxes, it just
    simply goes into demonstration mode, which i do not require)

    Thanks Rick, i wasnt aware that i could add click boxes to
    the captivate projects, which is a help, but unfortunately a great
    deal more work (i already have to press print screen enough times
    as it doesnt capture properly).
    Mark, the problem is the same on all my vista systems,
    whenever we run in training simulation mode, or select
    'Automitically add click boxes' in a custom option. It happens on
    different builds of Vista including Vista Final RTM. The graphics
    cards are all using drivers certified for use with Vista RTM. Why
    is it that captivate 1 works fine on Vista, but captivate 2 doesnt?
    is it something to do with Flash 9 not being great with
    Vista?

  • Add buttons to quiz-slide? Captivate 7

    Hi there,
    I am really having a hard time trying to add buttons to a quiz-slide (fill in the blank).
    Is it really true, that there is no work-around? All I need to do, is to use the smart shapes/ image buttons, to link to other slides in the project.
    Anyone??
    Thanks, in advance
    //Niklas

    Maybe this blog post could help, because it is not always that easy to have
    shape buttons on question/score slides. I encountered several small issues
    and tried to figure out workarounds:
    http://blog.lilybiri.com/want-a-button-on-question-slide-in-captivate
    Post was written for CP6, but nothing really changed in 7.
    2014-09-25 15:41 GMT+02:00 AJIT_M <[email protected]>:
        Add buttons to quiz-slide? Captivate 7  created by AJIT_M
    <https://forums.adobe.com/people/AJIT_M> in Adobe Captivate - View the
    full discussion <https://forums.adobe.com/message/6763021#6763021>

  • How to add a navigation Panel and Zoom Slider Bar using Java API

    Hello,
    I am using Mapviewer Java bean as I have to use Oracle Mapviewer in Java Stanalone application.Please can anyone tell me how to add a Navigation panel and Zoom Slider in Java API. I found the API s for same in Java Script but not in Java.Kindly help.
    I am using Oracle Mapviewer 11g.

    This is forum sponsored by Adobe make of Acrobat and Reader. Since Chrome and FireFox web browser have chosen to use their own viewer you might get more help in their forums or customer support.

  • How do I add interactive objects to a quiz slide?

    Hello, I'm having a Captivate 5 problem and can't seem to find an answer on the web or in the forums.  I'm creating a quiz in which I'd like to ask multiple choice questions.  For each answer option I'd like the user to be able to click on something - the answer text, an additional image, something - that would open a web page in a separate browser tab or window.  That new window would contain information related to the linked answer option.  This way the users can assess the relevance of each option in relation to the question.
    I've tried using the "Advanced Answer Option" option but that only opens a window when the answer is submitted.  Before I sat down to do this I was thinking I'd just add image buttons on the page, but it turns out that I can't add buttons, text inputs and several other options in a quiz slide.
    If anyone has any ideas on how to work around this I'd really appreciate hearing them.  Thanks in advance for any help you can give.

    Hi Steve, thanks so much for the quick reply! 
    The Button Widget does the job admirably, I can add it in and even make it invisible with the alpha setting so it appears that an image is the actual link.  Totally lets me do what I wished!
    Thanks again!
    Dave

  • How to add a new button in IC tool bar and handle the event for the button?

    Hi,
        I am working on CRM 2007 Interaction center. To add a new button to IC toolbar, customizing is available to define a new button and then assign in to the profile.
    In SPRO->CRM->IC webclient->Customer Specifc System Modifications->Define Toolbar Buttons, I defined one new button with ID ZSTART.
    Now in SPRO->CRM->IC webclient->Basic Functions->Communication Channels->Define Toolbar Profiles , I selected Default profileid and in Generic Layout Buttons Tab, I added the new button ZSTART in Position 3.
         So after completing the customizing when the user logs in using role IC_AGENT,  the button (with ID:ZSTART) gets displayed in the IC toolbar too.
          Now on click of this button, I need to create an object.
    To do so, I have to catch the event which is raised by this new button.
           Please let me how to implement the event handler for this new button. What will be the event name for this button click event and how I can subscribe for it ?
         Please let me know if anyone of you have already worked on similar requirements.
    Regards,
    Manas.
    Edited by: manas sahoo on Jul 22, 2008 7:49 PM

    Hello Manas,
    There are a couple of threads in the community that might help you out (if you haven't already found them):
    Re: IC Web Client Toolbar
    /message/3621917#3621917 [original link is broken]
    Regards,
    Renee Wilhelm
    Edited by: Renee Wilhelm on Nov 6, 2008 7:46 PM

Maybe you are looking for