Highlight on check boxes on question slides

Can I change the default green highlight on the checkboxes on question screens?
Thanks

The easiest way to do it would be to simply not allow the user to click the other 2 checkboxes if the first checkbox is filled.
on checkbox1:
if (this.rawValue == 1){ \\ checkbox is filled
     checkbox2.access = "protected";
     checkbox3.access = "protected";
if (this.rawValue == 0){ \\ checkbox is unfilled
     checkbox2.access = "open";
     checkbox3.access = "open";
Then you can simply reverse it for the other 2 that are allowed to be open together, the script would be the same for both checkboxes:
if (this.rawValue == 1){ \\ checkbox is filled
     checkbox1.access = "protected";
if (this.rawValue == 0){ \\ checkbox is unfilled
     checkbox1.access = "open";
If the user can't click the checkboxes, the hidden forms can't be open.

Similar Messages

  • How do I create a check-box matrix question using Acrobat XI Pro?

    I would like to insert a question that is a 10 x 10 matrix that allows respondents to select multiple boxes in each row.  For example, the "add item > rating scale" feature formats a matrix the way I would like, although it only seems to allow for radio buttons.  With this feature, respondents can only select one item per row.  Is there any way to use this feature with check-boxes rather than radio buttons?  Or a different feature to create a matrix that allows for multiple selections per row? 
    Thanks so much,
    Andy 

    I created a 30 page Form in Microsoft Word with 20 to 30 check boxes on each page using the Zapf Dingbats Font.
    When I used Acrobat XI Pro to automatically convert the form it fails to create usable check boxes.
    It worked properly about 3 times on test pages but it will not do it again.
    Manually inserting check boxes one by one on 30 pages is mind numbing to say the least.
    Why doesn't the software work properly anymore?

  • Check Box/ItemListener question

    Hello all,
    I'm trying to create a GUI for a program that I've been working on for some time. In the program, various sections can be run depending on what variables are present in the input file AND whether or not certain previous sections have been selected to run. I'm trying to represent this with a menu comprised of check boxes, where if the proper sections have been selected other boxes become enabled accordingly. I tried to get this behavior simply by saying in itemStateChanged() that if stp1bt3 is selected and stp1bt1 has just been selected, to enable stp2bt1. For some reason, stp2bt1 isn't enabled whenever I try this. Any help would be greatly appreciated, as I'm sure it's something very small that I have to add to this. Here is the code I have:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class CheckGUI extends JPanel implements ItemListener {
    private JCheckBox stp1bt1;
    private JCheckBox stp1bt2;
    private JCheckBox stp1bt3;
    private JCheckBox stp2bt1;
    private JCheckBox stp2bt2;
    private JCheckBox stp2bt3;
    private JCheckBox stp3bt1;
    private JCheckBox stp3bt2;
    private JCheckBox stp3bt3;
    private JCheckBox stp3bt4;
    private JCheckBox stp3bt5;
    private JLabel emptyLabel;
    private JLabel step1Label;
    private JLabel step2Label;
    private JLabel step3Label;
    private boolean s1b2, s1b3, s2b1, s2b2, s2b3, s3b1, s3b2, s3b3, s3b4, s3b5;
    public CheckGUI(boolean s12, boolean s13, boolean s21,
    boolean s22, boolean s23, boolean s31,
    boolean s32, boolean s33, boolean s34,
    boolean s35){
    s1b2 = s12;
    s1b3 = s13;
    s2b1 = s21;
    s2b2 = s22;
    s2b3 = s23;
    s3b1 = s31;
    s3b2 = s32;
    s3b3 = s33;
    s3b4 = s34;
    s3b5 = s35;
    emptyLabel = new JLabel("");
    stp1bt1 = new JCheckBox("Button 1");
    stp1bt2 = new JCheckBox("Button 2");
    if (s1b2 == false){
    stp1bt2.setEnabled(false);
    stp1bt3 = new JCheckBox("Button 3");
    if (s1b3 == false){
    stp1bt3.setEnabled(false);
    stp2bt1 = new JCheckBox("Button 1");
    stp2bt1.setEnabled(false);
    stp2bt2 = new JCheckBox("Button 2");
    stp2bt2.setEnabled(false);
    stp2bt3 = new JCheckBox("Button 3");
    stp2bt3.setEnabled(false);
    stp3bt1 = new JCheckBox("Button 1");
    stp3bt1.setEnabled(false);
    stp3bt2 = new JCheckBox("Button 2");
    stp3bt2.setEnabled(false);
    stp3bt3 = new JCheckBox("Button 3");
    stp3bt3.setEnabled(false);
    stp3bt4 = new JCheckBox("Button 4");
    stp3bt4.setEnabled(false);
    stp3bt5 = new JCheckBox("Button 5");
    stp3bt5.setEnabled(false);
    step1Label = new JLabel("Step 1");
    step2Label = new JLabel("Step 2");
    step3Label = new JLabel("Step 3");
    setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
    add(step1Label);
    add(stp1bt1);
    if(s1b2 == true)
    add(stp1bt2);
    else
    add(emptyLabel);
    if(s1b3 == true)
    add(stp1bt3);
    else
    add(emptyLabel);
    add(step2Label);
    if(s2b1 == true)
    add(stp2bt1);
    else
    add(emptyLabel);
    if(s2b2 == true)
    add(stp2bt2);
    else
    add(emptyLabel);
    if(s2b3 == true)
    add(stp2bt3);
    else
    add(emptyLabel);
    add(step3Label);
    if(s3b1 == true)
    add(stp3bt1);
    else
    add(emptyLabel);
    if(s3b2 == true)
    add(stp3bt2);
    else
    add(emptyLabel);
    if(s3b3 ==true)
    add(stp3bt3);
    else
    add(emptyLabel);
    if(s3b4 == true)
    add(stp3bt4);
    else
    add(emptyLabel);
    if(s3b5 == true)
    add(stp3bt5);
    else
    add(emptyLabel);
    public void itemStateChanged(ItemEvent e){
    Object source = e.getItemSelectable();
    if (source == stp1bt1){
    if(e.getStateChange() == ItemEvent.SELECTED && stp1bt3.isSelected() && s2b1 == true){
    stp2bt1.setEnabled(true);
    public static void main (String args[]) {
    JFrame f = new JFrame ("CheckBox Test");
    JPanel j = new CheckGUI(true,true,true,true,true,true,true,true,true,true);
    f.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    f.getContentPane().add (j, BorderLayout.CENTER);
    f.setSize (150, 450);
    f.show();
    }

    Hello,
    My dear frind you have to add the item listener fro an item to do dymaic changes in the check box.
    So for now i have added it.. check it down
    i have also placed the system.out.println(....);
    Alll THe Best
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class CheckGUI extends JPanel implements ItemListener {
    private JCheckBox stp1bt1;
    private JCheckBox stp1bt2;
    private JCheckBox stp1bt3;
    private JCheckBox stp2bt1;
    private JCheckBox stp2bt2;
    private JCheckBox stp2bt3;
    private JCheckBox stp3bt1;
    private JCheckBox stp3bt2;
    private JCheckBox stp3bt3;
    private JCheckBox stp3bt4;
    private JCheckBox stp3bt5;
    private JLabel emptyLabel;
    private JLabel step1Label;
    private JLabel step2Label;
    private JLabel step3Label;
    private boolean s1b2, s1b3, s2b1, s2b2, s2b3, s3b1, s3b2, s3b3, s3b4, s3b5;
    public CheckGUI(boolean s12, boolean s13, boolean s21,
    boolean s22, boolean s23, boolean s31,
    boolean s32, boolean s33, boolean s34,
    boolean s35){
    s1b2 = s12;
    s1b3 = s13;
    s2b1 = s21;
    s2b2 = s22;
    s2b3 = s23;
    s3b1 = s31;
    s3b2 = s32;
    s3b3 = s33;
    s3b4 = s34;
    s3b5 = s35;
    emptyLabel = new JLabel("");
    stp1bt1 = new JCheckBox("Button 1");
    stp1bt2 = new JCheckBox("Button 2");
    if (s1b2 == false){
    stp1bt2.setEnabled(false);
    stp1bt3 = new JCheckBox("Button 3");
    if (s1b3 == false){
    stp1bt3.setEnabled(false);
    stp2bt1 = new JCheckBox("Button 1");
    stp2bt1.setEnabled(false);
    stp2bt2 = new JCheckBox("Button 2");
    stp2bt2.setEnabled(false);
    stp2bt3 = new JCheckBox("Button 3");
    stp2bt3.setEnabled(false);
    stp3bt1 = new JCheckBox("Button 1");
    stp3bt1.setEnabled(false);
    stp3bt2 = new JCheckBox("Button 2");
    stp3bt2.setEnabled(false);
    stp3bt3 = new JCheckBox("Button 3");
    stp3bt3.setEnabled(false);
    stp3bt4 = new JCheckBox("Button 4");
    stp3bt4.setEnabled(false);
    stp3bt5 = new JCheckBox("Button 5");
    stp3bt5.setEnabled(false);
    step1Label = new JLabel("Step 1");
    step2Label = new JLabel("Step 2");
    step3Label = new JLabel("Step 3");
    setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
    add(step1Label);
    add(stp1bt1);
    if(s1b2 == true)
    add(stp1bt2);
    else
    add(emptyLabel);
    if(s1b3 == true)
    add(stp1bt3);
    else
    add(emptyLabel);
    add(step2Label);
    if(s2b1 == true)
    add(stp2bt1);
    else
    add(emptyLabel);
    if(s2b2 == true)
    add(stp2bt2);
    else
    add(emptyLabel);
    if(s2b3 == true)
    add(stp2bt3);
    else
    add(emptyLabel);
    add(step3Label);
    if(s3b1 == true)
    add(stp3bt1);
    else
    add(emptyLabel);
    if(s3b2 == true)
    add(stp3bt2);
    else
    add(emptyLabel);
    if(s3b3 ==true)
    add(stp3bt3);
    else
    add(emptyLabel);
    if(s3b4 == true)
    add(stp3bt4);
    else
    add(emptyLabel);
    if(s3b5 == true)
    add(stp3bt5);
    else
    add(emptyLabel);
    stp1bt1.addItemListener(this);
    stp1bt2.addItemListener(this);
    stp1bt3.addItemListener(this);
    stp2bt1.addItemListener(this);
    stp2bt2.addItemListener(this);
    stp2bt3.addItemListener(this);
    stp3bt1.addItemListener(this);
    stp3bt2.addItemListener(this);
    stp3bt3.addItemListener(this);
    stp3bt4.addItemListener(this);
    stp3bt5.addItemListener(this);
    public void itemStateChanged(ItemEvent e){
    Object source = e.getSource();
    if (source == stp1bt1){
         /*      System.out.println(e.getStateChange() == ItemEvent.SELECTED);
              System.out.println(stp1bt3.isSelected());
              System.out.println(s2b1 == true); */
    if(e.getStateChange() == ItemEvent.SELECTED && stp1bt3.isSelected() && s2b1 == true){
    stp2bt1.setEnabled(true);
    public static void main (String args[]) {
    JFrame f = new JFrame ("CheckBox Test");
    JPanel j = new CheckGUI(true,true,true,true,true,true,true,true,true,true);
    f.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    f.getContentPane().add (j, BorderLayout.CENTER);
    f.setSize (150, 450);
    f.show();
    }

  • Check Box Selection Questions

    Is it possible to make a selection with a check box, and then have it select a predetermined selection from a drop down menu?
    e.g. If I select "Los Angeles" from a series of office locations in my check boxes, can it automatically select an address from a drop down selection for that Los Angeles Office?
    Thanks for any help in advance
    Aaron

    Notice that this line
    request.getParameterValues("build1");
    is getting the value of the check box. The "checked" attribute is not the value, just the attribute.
    Oddly enough, I just wrote some code to do this today.
    First, add this little javascript method to your page.
    <SCRIPT language="JavaScript"> <!--  //Hide contents from older browsers
    function setHiddenTagFromCheckbox(checkbox, element) {
      if(checkbox.checked) {
        element.value="yes";  
      else {
        element.value="no";  
    // End hiding the contents -->
    </SCRIPT> 2) Add a hidden input field for each checkbox field.
    <input type="HIDDEN" name="prin2signhidden" value = "no">3) Add an onclick handler for the check box
    <input type=checkbox name="prin2sign" onclick="setHiddenTagFromCheckbox(document.formname.prin2sign, document.formname.prin2signhidden)">In your servlet check the value of prin2signhidden instead of the checkbox input.
    The forum is doing odd things to this source code. Any place you see a > you should actually have a "greater than" sign.

  • Many check boxes list(question modified)

    hi dear,
    i want store the many check box values in database
    i am giving example
    i have one input list box
    if i click on that list box many check box will come.which is already stote in the database
    location
    bangalore
    chennai
    hyderabad
    mubai
    .now i will select bangalore,chennai and it will show in the list box .that value i want store in the database for particular record along with emp id.
    how to store pls help me.

    You can see my answer in your previous post: how store in database  list of multiple check boxes values
    With af:selectManyChoice the same, as with af:selectManyCheckbox:
    <af:selectManyChoice value="#{backingBeanScope.rpoDangerObjectBean.licensedActionsSelected}"
    label="#{bindings.LicensedActionsClsVO.label}"
    id="smc2" simple="true"
    contentStyle="width:440px"
    autoSubmit="true"
    disabled="#{pageFlowScope.disabledMode}">
    <af:forEach items="#{bindings.LicensedActionsClsVO1.rangeSet}"
    var="item">
    <f:selectItem itemValue="#{item.Num}"
    itemLabel="#{item.Code} #{item.Name}"
    id="si66"/>
    </af:forEach>
    </af:selectManyChoice>

  • Not able to highlight and select answers to question slides in Captivate6

    I have published my projects to html5 in captivate 6. I find that many of my slides do not respond to clicking the correct answers. The slides that Do work allow me to highlight the desired answer and click it to select it? How do I solve this problem? Thanks

    Which 6 version? I'm asking this because if your version number is ending on 199 (I know several users who still have that one), you have to upgrade ASAP to 6.0.1.240.
    Lilybiri

  • Return Item and Free goods check box in purchase order

    Hi Guru:
    I just got the question regarding the return item and free goods check box,my question is that if I check the free good check box,then the price of the matieral will be charged to zero,however,if I want to issue the return purchase order to the vendor,does I need to check the return box first and then issue the return order to the vendor? Then go to MIGO transaction to select the movement type 122 to return the goods,what's the whole precedure for returning the goods to the vendor,can anybody tell me,very appriated!

    Hi,
    Retun to vendor through have two types....
    One is you have Po created, vendor send the item in that few items have rejected so you need to return the item to vendor......
    here in MIGo chose returrn to vendor selce the PO numbere.... system automaticaly take the movent type 122....
    sencond type is Retun PO..... In Po while creting the PO tick the return indication..
    If you do the GR system will pick 161mopvent type.. ( GR returns)...
    REgards
    anand

  • Inserting click boxes in Q slides in Captivate 5.5

    I don't have the option to insert click boxes in question slides in my version of Captivate (5.5), which I would like to do to create a quiz with multiple reults per these instructions: http://kb2.adobe.com/community/publishing/852/cpsid_85255.html). See screenshot below:
    Any ideas about workarounds or some setting or function that I'm missing would be greatly appreciated!

    No workarounds.  With Captivate 6 or higher you can add some interactive objects such as shape buttons to quiz slides, but not with Cp 5.5.
    Your only other option is to forego using quiz slides and create your own question slides using interactive objects.

  • Captiave 2 - Adding Buttons to Question Slides

    I need to use the Captivate Question Slide "maker" to create
    interactive questions with navigation back to the "Jeopardy-esque"
    main page. When doing so, the question slide maker prevents adding
    buttons/navigation, etc.
    Any work arounds, hints, suggestions?
    Thanks...

    Hi Beta Bob and welcome to our community
    As you have seen, you cannot insert interactive objects
    (Buttons, Click Boxes or Text Entry Boxes) on Question slides.
    The only workaround I can think of is to sort of simulate the
    question slide using these objects on a standard slide.
    Cheers... Rick

  • Need help in LiveCycle Forms - Highlighting required fields when the check box is checked / Un-highlighting the fields if I un-check the check box...

    Hello All!
    I am relatively new to creating forms within LiveCycle but I have learned quickly so bare with me on my question.
    I have figured out how to highlight a field when a check box is clicked on, however, I cannot get it to remove the highlight when the check box is unchecked?
    This is what I used for the highlight:
    Subform1.fieldname.fillColor="255,255,0"
    Can anyone provide any insight or suggestions on how I might fix this script issue?
    Thanks in advance!
    -Lisa

    Hi,
    Script migth be something like this. Put it on Change event of the check box
    if (this.rawValue == 1) { Subform1.fieldname.fillColor="255,255,0"
    xfa.layout.relayout();
    else 
    { Subform1.fieldname.fillColor="255,0,0"
    xfa.layout.relayout();
    BR,
    Paul Butenko

  • When I click the iCloud button I get a browser with check boxes, not slider buttons and it does not have a "backup and storage" button.  So I cannot set up backup.

    When I open my iCloud browser it looks different than "normal." It shows the list with check boxes, not slider on-off buttons.  It dos not show a "storage and backup" button so I cannot set up my backup. What is wrong?

    If see something like the image below it's because you are looking at the iCloud settings on your Mac, not on an iOS device (which has sliders).  Storage & Backup isn't in the Mac settings because you cannot back up your Mac to iCloud.  Only iOS devices can back up to iCloud.  On a Mac, you can get information about your iCloud account storage by looking at the green usage bar at the bottom and by clicking the "Manage..." button on the bottom right.

  • Editing radio button / check box in MC question in DesignTemplates?

    Anyone an idea, how can I change these radio button / check box in MC question in a DesignTemplates?

    Hi there
    I don't believe this aspect may be controlled by a Design Template. Probably because this is an aspect that may vary from question to question. It deals with question functionality as opposed to simple visual elements.
    If you feel strongly this should be considered as part of a Design Template function, I might suggest you put it forward to Adobe.
    Click here to visit the Wish Form/Bug Reporting Form
    Cheers... Rick
    Click here for Adobe Authorized Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • Blank boxes when I insert question slides.

    I posted this yesterday and no one replied... Hopefully
    someone can give me some advice. Thanks!!
    I am trying to create a new project in CP3 and once I publish
    the project, there are 2 blank boxes on each slide and the movie
    stops on the second slide. These projects consist of 8 PPT slides,
    7 image slides, and 5 questions slides... and this project is
    narrated. I have tried creating the project again hoping the blank
    boxes would go away and that didn't work. So I published this
    module one slide at a time to try and determine the root of the
    problem. I can publish all 15 slides of images and PPT as a SWF
    file with no problem. But once I insert question slides, that's
    when the blank boxes appear and the module stops on slide 2. I
    think this is odd considering my question slides are the last 5
    slides of the module but the blank boxes start on slide one. When
    previewing each slide, each 5 slides, or the entire project, there
    are no problems. It's just once I publish the project. I've tried
    publishing to SWF file and a stand alone disc.. same problem. I
    also tried bringing up a module I had done before on CP1 and
    converted the files, made no changes to the project and just
    published it with CP3 as SWF file. I got the blank boxes and the
    project stopped at the second slide. The question slides I have are
    simple T/F or multiple choice slides and I don't have them set up
    to record results.
    Any ideas what I'm doing wrong? I've published about 25 of
    these modules in CP1 and never had this problem in the past. I
    would be happy to send someone an example of what I'm talking
    about.
    Thanks!
    Mindy Wilson
    Training Coordinator
    TALX Corp

    Thanks for responding. No, I don't have any interaction on
    the project. I even tried to create a new project and inserted 2
    PPT slides (with text only) and then one question slide... I just
    made up a simple T/F question just to have a question slide in that
    project and once I published it, it happened again. If I deleted
    that question slide and published, the blank boxes were gone and it
    didn't freeze up.
    I was on the phone all morning with Adobe support and they
    suggest I reinstall the software. All software disks for my company
    are located at home office so once I receive the software tomorrow,
    I'll try it again. If that doesn't work, I'll certainly appreciate
    any help.
    Thanks!

  • Question: How can I implement check box in workflow?

    Can I implement check box, drop down menu etc in workflow?

    Hi,
    There is no quick and easy way to do this.
    Although the OA Framework / PL/SQL document approach to a dynamic notification is only intended to be read only rather than bi-directional, it can be used to provide this kind of functionality.
    Once the fields have been completed, you would need to include a custom mechanism to respond to the notification (by calling WF_NOTIFICATION.respond), rather than having the users use the standard buttons.
    I've done similar with PL/SQL documents in the past - rendering the contents how we needed them to, and then essentially having an HTML form submit which invokes a PL/SQL procedure passing the values selected as parameters. The code then does whatever it needs to do, and responds to the notification by calling the appopriate API.
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://www.workflowfaq.com/blog ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • Question Related to Check-box in Dialog Program

    Hi All-
    I desgined check box in Table Control... In my Internal table I have 41 records, When user click on Select all button it selects only first 14 records from the table control...When the user uses page-down, then click on Select all, selects remaining 14 records and so on...
    But how to select all the records at a time instead of using page-down...
    Please advice me how to solve my problem!!!!
    Thanks,
    Sony

    I would not suggest doing it like that.  Instead move the MODULE USER_COMMAND outside of that loop.
    *  Screen Flow Logic 
    PROCESS AFTER INPUT.
    LOOP AT i_x002 .
    ENDLOOP.
    MODULE user_command_0600 .
    *  Module coding
    MODULE user_command_0600 input..
    CASE sy-ucomm.
    WHEN 'SELA'.
    loop at i_x002.
    i_x002-flag = 'X'.
    MODIFY i_x002.
    endloop.
    WHEN 'DELA'.
    loop at i_x002.
    i_x002-flag = space.
    MODIFY i_x002.
    endloop.
    ENDCASE.
    endmodule.
    Regards,
    Rich Heilman

Maybe you are looking for

  • Cannot download Acrobat Reader 9 to my new ASUS computer with Windows 7

    I replaced my old "slave" XP system computer with a new ASUS Windows 7 computer. I connect the slave computer (Windows 7 OS) wirelessly through a Linksys router.with my "home" computer (XP OS) and the internet. I get the following error message when

  • Problem to display a checkbox in PDF generated by XML Publisher

    Hi All, i need your help, i have create and PDF template with checkbox field. when i generate the report from Oracle Application using XML Publisher all is fine only the filed checkbox which is inactive, i can't do any check/Uncheck in the filed. Tha

  • Compiled binary crashes during initialization on Solaris 10/x86 platform

    Hi, I have a problem to run application built with Solaris Sun Studio compiler. It dumps a core which contains: $c_init+0x19a(1, 804761c, 8047624, 8047610, 80dabfd, 80da64c) _start+0x78(1, 8047744, 0, 804774c, 8047756, 8047829) > When application is

  • Image location problem.

    Hi friends, I've put image and link object on my dashboard and link it to the image. I can see the image on my local system but cannot see the image there when I access the dashboard on some other computer. Currently I'm accessing the image from: C:\

  • Client Deletion using R3trans

    Hello, We would be using R3trans to delete the client. Is there a problem (performance wise or any other) if we delete a client during normal operational hours? Secondly, do I need to delete the T000 entry before running R3trans u2013w <log file name