Check whether checkbox interaction has been clicked

Can anyone tell me whether it is possible to use the checkbox widget from the advanced interactions in Captivate 7 as part of a quiz as detailed below.
What I would like to do is have 18 checkboxes on my slide with a button which when pressed will trigger an action to check if the correct ones have been checked. If they have I'll show correct feedback, if not I'll show incorrect feedback.
I guess in short I'd like to know if it's possible to update a variable based on whether the checkbox is selected e.g. '_var = 1' or not '_var = 0'.
I had considered creating a bespoke activity using click boxes and advanced actions to achieve the desired results but the iPad can't handle more than five click boxes on an individual slide.
Many thanks in advance.

Hello,
I'm not sure that iPad will be able to support that, since one is never sure but it can be done in Captivate. My blog post about using checkboxes/radiobuttons for custom questions is the most popular post I ever wrote, when i screen the number of visits: http://blog.lilybiri.com/widgets-and-custom-questions-part-1
The radiobuttons and checkboxes interactions have an identical functionality but are guaranteed for HTML5 output.
You will see that the associated variables are no booleans at all but will be empty when checkbox for that item is not chosen, or equal to the item when chosen. This means that you'll have to create a conditional action that checks for the correct entries like this:
IF v_one is equal to 'This is first item text' AND
     v_two is equal to v_null      AND...   where v_null is an empty variable, or you can also
Since this is a static interaction, you will need an event to trigger that action: you could use a button 'Submit' or a slide event.
http://blog.lilybiri.com/using-captivate-widgets-some-tips
Lilybiri

Similar Messages

  • How to check whether MRP run has been executed for a sales order or not

    Dear Experts,
    In Strategy:20, Make to Order scenario, I have run MRP for sales order in T Code:MD50,
    then how can I check whether MRP run has been executed for a sales order or not.  Is there any report where I can find some indication?
    Thanks and regards,
    Vikas

    Dear,
    In MTO scenario with Planning strategy group 20 in material master .
    After sales order is created, Run MRP , then planned order will be created then go to planned order details in MD04 or MD12 you will get sales order number in assigment tab.
    or check the Table PLAF field  PALTR ,and field name KDAUF its sales order, for all created planned order.
    Regards,
    R.Brahmankar

  • How to check whether an invoice has been paid or not?

    Hi,
        In FI, how should I check whether an invoice is paid fully and also whether it has any residual item?
    And how should I pay an invoice with some residue? Which transaction I should use and what are the steps to do that?
    Since I'm new to FI, any guidance will help me a lot...
    Thanks,
    Priya.

    Hi Priya,
    you create a posting with residual items as follows:
    <b>Incoming payment</b>
    1. Start transaction F-28
    2. Enter all required information and click on <i>Process open items</i>
    3. On the next screen click on the tab <i>Res. items</i>
    4. Make sure that only the items that you want to pay are highlighted ((Net amount appears in blue)
    5. For each line item enter the residual amount that is still to be paid (Example: you have one invoice over 100 USD and 80 USD are paid, you enter 20 USD, since this is your residual that still needs to be paid)
    6. Save
    <b>Outgoing payment</b>
    1. Start transaction F-53
    2-6. is identical to incoming payment
    Regards,
    Claus

  • Standard Report check whether Goods Issue has been performed for DN

    Hi All,
    My users is having a list of DNs where they would like to check if Post Goods Issue has been performed for them.  I would like to ask is there any standard reports as to check if a Delivery Note has PGI performed?
    I have tried report VL06G but in this report we cannot give the DN No. as the key. 
    Thanks.

    There is no standard reports to check GI by DN number.
    You have to find out the Outbound Number first then check by Outbound number.
    In SE16N, key VBFA table
    Pump in your DN number under "Follow-on doc."
    Under "Prec.doc.categ." select "J".
    with the outboud number, you can proceed to check using above report suggested.
    Alternatively, using same VBFA table. Pump in list of outbound number under "Preceding Doc." and select "Subs.doc.categ." as "R".
    If you can set-up query reports, you can also get all the information directly with the DN Numbers.

  • How to check whether database console has been installed on Windows or not?

    I selected the following choices when I ran Oracle Database 11g Release 2 Installer on Windows 2008 R2:
    Create and configure a database
    Server Class
    Single instance database installation
    Typical install
    I got the Database Configuration Assistant: Warning
    Enterprise manager configuration failed due to the following error - Listener is not up or database service is not registered with it. Start the Listener and register database service and run EM Configuration Assistant again.
    I have started the listener and register database service now. I have tried to run the command:
    emca -config dbcontrol db -repos create
    I got the error sysman already exists.
    Does it mean that even though I got the Warning message, the Enterprise Manager repository has already been created?
    What should I do to bring up the database console?
    Thanks.

    I did not see any EM DB Console service.
    I believe SYSMAN is the default schema for the EM repository. So, I think I just need to configure EM not to create EM repository.

  • Need to check XI 3.0 has been installed properly or not on PC?

    Hi,
    I have installed XI 3.0 on my PC with the help of BASIS people.
    I want to check whether the XI has been installed properly or not.
    Can anyone please let me know how to check this?
    Regards,
    Bala Raja

    Hi Bala,
    There are few things you can check.
    1. run SLDCHECK tcode. There should be no error.
    2. Check http://hostname:50000/rep is coming up successfully.
    3. Login to ID/IR/RWB
    This is what I can think of initially to check the system.
    -Pinkle

  • How to check whether checkbox is checked or not and to get label if checked

    Hi,
    I've used checkboxgroup, and i'm populating it dynamically using attribute node & attribute value.. like this
    IPrivateTestView.IWelcomNode wNode =wdContext.nodeWelcom();
         IPrivateTestView.IWelcomElement wEl,wE2,wE3;
         wEl=wNode.createWelcomElement();
         wNode.addElement(wEl);
         wEl.setWelValue("Welcome Boards");
         wE2=wNode.createWelcomElement();
         wNode.addElement(wE2);
         wE2.setWelValue("Traditional Welcome");
         wE3=wNode.createWelcomElement();
         wNode.addElement(wE3);
         wE3.setWelValue("Photograph");
    now i want to check whether checkbox is checked and how many checkbox has been checked and then i want that label values of checked boxes.. so pls help me out. if possible give me some sample coding...

    CheckBoxGroup.texts -> Welcom.WelValue
    In controller method (e.g. action handler):
    IWelcomNode node = wdContext.nodeWelcom();
    for (int i = 0; i < node.size(); ++i)
      IWelcomElement e = node.getWelcomElementAt(i);
      if (node.isMultiSelected(i))
        String text = e.getWelValue();
        /* checkbox #i is selected and variable "text" contains the text */
    Armin

  • Displaying a caption when multiple click boxes has been clicked in a slide.

    I have 9 click boxes in my slide which when clicked opens a different page except 1 click box.1 click box takes the user to the previous page . I want to display a text caption when the user has clicked other 8 click boxes just to make sure they go through all the pages. Is there a way in captivate to do this? If yes, how do I do it?

    Since you are not yet familiar with advanced actions (and variables?), will try to explain in detail and provide some links to articles/blog posts as well.
    Create 8 user variables, one for each click box (Project, Variables); I will label them v_one, v_two.....v_eight It is not necessary to give a default value
    Create another user variable v_counter that will be incremented whenever a click box has been clicked for the first time
    Create a first click box (set to visible), label it CB_One (find that easier) and in the Properties panel, Action accordion, On Success change the action to 'Execute Advanced actions'. Then open the actions dialog box with the Folder icon that appears.
    You have to create a conditional action, so select that type, and label it CB_One (is possible, an exception because normally you cannot have same labels); this action will need two decisions (have a look at my video tutorial: http://kb2.adobe.com/community/publishing/858/cpsid_85847.html):
    First decision 'Visited' checks if the click box has already been clicked, visible when the value of v_one = 1; if this is not the case (first click) v_one gets the value=1 and the counter v_counter is incremented
    Second decision 'Check' checks the value of the counter, and shows an initially invisible button (I choose a button, BtNext but you can also have a click box) if the counter reaches 8, bummer the forum doesn't allow me to insert an image, have to type:
    IF section                       v_counter is equal to 8
    Actions section             Show BtNext
    Duplicate the click box 7 times, label them CB_Two,  ..... CB_Eight  (beware: case sensitivity). To each copy the same advanced action is attached, but you'll have to create duplicate actions for each one CB_Two....  In the duplicates you have to replace the variable v_one by the proper variable (v_two...) in the first decision; the second decision remains the same
    Test.
    Lilybiri

  • How to keep track of how many times a link has been clicked?

    How to keep track of how many times a link has been clicked or accessed? Do I need to use database for this?

    Hi
    Proably something like this can work,
    1> Have a servlet/bean invoked when the link is linked
    2> have a static variable in that servlet/bean wich gets incremented before the control is passed to another desired page..
    The problem with this approach is that care has to be taken that the servlet/bean is not re-instalised, in case of which the static variable will also be instalised and the data would be lost.
    The best thing is to store the count in the database.
    Regards
    Arathi.

  • Check if a DSO has been lookup by other DSO/cube in start/end routine

    I have to support on of the client system which I am not part of the development.
    I found one DSO has been schedule to load data in daily process chain but it is not update to any target.
    Is it possible to check if this DSO has been using in the staging  i.e look up the reference field by other cube/DSO in start or end routine ?

    Hi,
    Possible by invoking respective field into code part.
    I think not much stuff required in this regard.
    Thanks - RK

  • Finding which menu item has been clicked

    Does oracle forms have anyway of knowing which menu item has been clicked.
    I have a security structure set up where menu items are made visible depending on their name, which in turn is based on the individual forms that a particular user can access.
    I would like to write a generic method for all menu items where it uses the name of the clicked menu item to perform a query, the result could be used to open a new form.
    So is there a build in or some 'secret source' which tells me the name or gives me the id of a clicked menu item?
    Message was edited by:
    gazbarber

    Not entirely sure what you mean, are you sugesting i have a generic method with a switch statment and uses the input paramter to decide what to do?
    It's not really what i'm after, rather I already have the name of the menu item in the database, the same table also contains the module filename that clicking the button should go to.
    So the idea would be somthing like
    declare
    begin
    select module name into new form from secutity table where menu item = :system.current menu item;
    open_form(new form);
    end;
    :sysem.current menu item is the missing ingreadiant.
    My menu has many items in the hundreds i think so even the generic switch staement would be pretty tedious and i want changes in the database to be felt system wide as they are else where in my system.
    Thanks for you help and i hope this explains my question better.
    Regards,
    Gareth
    Message was edited by:
    gazbarber

  • FB70: User exit when the save button (for posting) has been click

    Hi ABAP Gurus,
    With regard to FB70, can anyone provide me the name of the user exit that will be triggered when the save button (for posting) has been clicked?
    Thanks!
    <b>
    Best Regards.
    Brando</b>

    Hello Brando,
    With FB70 I recommend you implement the user-exit via the Business Add-In (BADI) way and avoid SMOD exits if possible.
    The list below are the BADIs that are called by the <b>ECC6.0</b> system after you click the <b>Save</b> button to post a document. <u>They are listed in the order which they are called before the actual post</u>. You'll have to find the right one as per your requirement - you can view their definition via transaction SE18 then after you find the right one you need to use that definition to create an implementation via SE19. Here again, you'll have to choose the right method that suits your requirement. You'll find the method and class documentation in some cases with examples on how to implement, you need to write the code between the Method..EndMethod statement using the parameters provided by the Method.
    1. PPA_CUST_BADI
    2. FI_RES_ITEM_CURRENCY
    3. AC_QUANTITY_GET
    4. BADI_PRKNG_NO_UPDATE
    5. FM_POP_CORE
    6. FMRI
    7. FMRE_BUS_PROCESS
    8. FAGL_SET_SEGMENT
    9. EXIT_XFMPR1_001
    10. BUAVC_CHECK_RESTRICT
    11. UKM_R3_ACTIVATE
    12. CO_DOCUMENT_INFO
    I spent a bit of time debugging FB70 to find this info for you, please appreciate by rewarding points (or else
    Good luck.
    Cheers,
    Sougata.

  • How  can i determin which tab has been clicked??

    hi there
    how do i determine which one of the tabs in a tabbedPane has been clicked? do i add ActionListener to the tabbedPane or its sub JPanel?

    I import them all, it finallly compiled, but I am not sure if they are ok. here is the codes
    import javax.swing.event.ChangeEvent;
    import javax.swing.event.ChangeListener;
    TabbedPane = new JTabbedPane();
    TabbedPane.addTab("Easy", easyTab);
    TabbedPane.addChangeListener(new ChangeListener()
    public void stateChanged( ChangeEvent ce )
    Object source = ce.getSource();
    if (source == "Easy")
    currentTab = "easy";
    does it look all right to you?

  • I am now unable to print pdf documents. The message on screen says I have not selected any pages to print, even though the bullet point saying 'All' pages  has been clicked. I have recently upgraded to adobe reader XI, could that be the problem? I also ca

    I am now unable to print pdf documents. The message on screen says I have not selected any pages to print, even though the bullet point saying 'All' pages  has been clicked. I have recently upgraded to adobe reader XI, could that be the problem? I also cannot sign in to Adobe Export pdf now either. It says 'error occured while signing in'!

    Open Adobe Reader | Edit | Preferences | Documents: change View Documents in PDF/A Mode to Never.
    Regarding the ExportPDF problem, please start a new topic in the ExportPDF forum.

  • Is there any way to find out "Where am I" after a Field has been clicked?

    My question refers to the "Mouse Up" JS which are so frequently associated with a Field.
    I tried this code:
    console.println(this.rect);
    and the output was: "undefined".
    I then tried this:
    console.println(this);
    and the output was: [object Doc]
    so, I guess I am making progress, but I am too high on the object hierachy.
    What I need is the rect or the name, or some way to determine which of the many fields with identical code has been clicked.
    That kind of generalization (same code in many fields) sure saves a lot of time and coding.
    TIA,
    -Ramon

    As noted you can use the 'event' object's 'rect' property to get the quads, corner' points of the field that you clicked on. You can also access other event properites in the same way like 'event.target.name', 'event.targetName', or 'event.type' for example. Using the 'join()' method can provide a clearer listing of the quads for for the event, console.println(event.target.rect.join(", "));'

Maybe you are looking for

  • Is there a way to speed up Applications Listing?

    Every time I open Finder and click on Applications, it takes 20-30 seconds until it lets me scroll through the listing because it has to redraw the icons for every application. Is there a way to cache these icons so it doesn't stall every time? Note

  • How Can I create a dictionary file (dicionary.dat) in MIDP

    Hi All, I need your help. Let me explain clearly my problem so u can advise me what to do. In fact, I have a text file of words called (words.txt) and I would like to create a dictionary file (dict.dat)of those words and be able to load that dictiona

  • Missing photos in preview

    I have a large photo book (100 pages, 647 images) in iphoto 11.  I'm having two problems.  First, when I export to iDVD or iMovie, 3 photos are missing from the files.  The pix are on double spread page layouts, and only some of the small photos (not

  • WSDL for BPEL into APEX

    I have built a process in BPEL and I am trying to use the WSDL provided for the process in the "WSDL Location" in APEX. It is returning the error. "The WSDL document could not be understood by the rendering engine. Click Create Web Service Reference

  • Howdy, and some questions

    I have been building my own system with Linux From Scratch for five years, but after two weeks of struggling with the latest Gnome I decided I'm gettin' too old for this stuff.  Arch looks like the perfect next step - plenty of control over what gets