Customize the selected answer looking and customize radio btns.

Hi Everybody,
I am new to Adobe Captivate, I am using Captivate 6, I am trying to make a course. On quiz part, if I have two answers for one question, I want to have a selected state effect on the question that user select (like the orange one in the Img 1 below). I tried the Show and Hide function at action panel in Quiz Properties. It didn't seem work for me. And, it looks like that I can't customize the radio buttons that comes with the quiz slides either. So, I am wondering does anyone know how to do it?
Another thing is: how can I get rid off the Submit Button, Review Area and Auestion 1 of 2 these three elements that come in when you create a new question slide? (the circled elements on Img 2 is what I want to get rid off). When I right click the element, there isn't any options to delete it, I also tried to press the delete key on keyboard, it didn't let me delete it either.
Thanks for the answers.
Img 1
Img 2

Hello,
Perhaps some article I wrote about customizing default Question slides could help you to solve some of your questions. They were written fro CP5/5.5 but a lot is still valid. CP6 has more possibilities (like Dynamic quiz scope, branching awareness and remediation, pretest, partial scores and penalties) but the basics of question slides (like the buttons..) are still the same:
http://lilybiri.posterous.com/question-question-slides-in-captivate
http://lilybiri.posterous.com/question-question-slides-part-2
Do not get rid of the Review area, you can shrink it but do not delete it: it also severs to display the feedback message on the score slide and the warning if a question has not been answered during review.
The Progress indicator (Question x of y) can easily be turned off in the Quiz Preferences. Submit button is necessary if you keep the two-step process (look at my blog posts).
If you want total control over question slides, you'll have to quit using the default ones (created to make life simpler) and create your own question slides using standard objects, variables and advanced actions. Since you are posting in the Advanced Captivate users forum, I suppose you are acquainted with that possibility as well.
Lilybiri

Similar Messages

  • How to disable the selection of "Title and logo URL of a SharePoint 2013 site" from browser

    how to disable the selection of "Title and logo URL of a SharePoint 2013 site" from browser or How can we able to set our custom default log to the sp2013 site using code.So that users are not allowed to change from browser again.
    Thanks & Regards, Krishna

    Hi  Krishna,
    For your issue, you need to deploy a farm solution using HideCustomAction to hide site settings link. For example to hide “Title, description, and logo” link you can use below code:
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <HideCustomAction
    GroupId="Customization"
    HideActionId = "ProjectSettings"
    Location = "Microsoft.SharePoint.SiteSettings">
    </HideCustomAction>
    </Elements>
    Reference:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/92f002b7-0e9c-424e-836a-de40c4e5d81f/hide-option-from-site-settings-page-in-sharepoint-2010?forum=sharepointdevelopmentprevious
    http://blog.milanchauhan.com/2013/06/add-custom-section-in-site-settings.html
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Is that where you are offering to help retrieve the encryption-answer questions and cod have been an accident and do not forget the answers

    HHlo Is that where you are offering to help retrieve the encryption-answer questions and cod have been an accident and do not forget the answers

    How to reset your Apple ID security questions
    Go to appleid.apple.com and click on the blue button that says 'Manage Your Apple ID'.
    Log in with your Apple ID and password. If you have forgotten your Apple ID password, go to iforgot.apple.com first to reset your password with a password recovery email.
    Go to the Password & Security section on the left side. Then underneath the security questions click on the link that says 'Forgot your answers? Send reset security info email to [email]'.  This will generate an automated e-mail that will allow you to reset your security questions. 
    If that doesn't work, or  there is no rescue email link available, then you will need assistance from Apple Account Security. Follow this procedure:
    click on 'Temporary Support PIN' that is in the bottom left side, and generate a 4-digit PIN for the Apple Account Security Advisor you will be contacting later. 
    Next, go to getsupport.apple.com. If you see a message that says 'There are no products registered to this Apple ID, simply click on 'See all products and services'.
    Choose 'More Products & Services', then 'Apple ID'.
    A new page will open.  Choose 'Other Apple ID Topics', then 'Forgotten Apple ID Security Questions'.
    Click the blue 'Continue' button.
    Select the contact option that suits your needs best.
    The above information quoted with gratitude from TJBUSMC1973, another user in these forums.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base before you post a question.
    Regards.

  • Forget the secret answer questions, and I would like to add e-mail Alternative

    Forget the secret answer questions, and I would like to add e-mail Alternative

    SECURITY QUESTIONS
    Read this note for information on how to reset the security questions http://support.apple.com/kb/HT5312
    This user tip may also help you http://discussions.apple.com/docs/DOC-4551

  • Validation problem with the selected Month-Year and Days in the Month.

    Hi,
    I am unable to figure out the logic for the below senario.
    There are two fields Period and Date
    If Users sets the Period to FEB-11
    and User has to select the Dates of the February Month only and if he selects any other month It should throw an error.
    How could I restrict the user to not enter any other date from the selected period.
    Please suggest.
    Thanks,
    Krishna

    Hi Gyan,
    Thanks for the update.
    I am just tring to copare the values
    able to get the period value and unable to compare to the date format.
    just look at the below code with the output of sop
            OAMessageTextInputBean mtb =
            (OAMessageTextInputBean)webBean.findIndexedChildRecursive("item1");
                OAMessageDateFieldBean mtb1 =
                (OAMessageDateFieldBean)webBean.findIndexedChildRecursive("item2");
            String period = (String)mtb.getValue(pageContext);
            System.out.println("Value of Period:::"+period);   // FEB-11 is the out put
               Date date = (Date)mtb1.getValue(pageContext);
                System.out.println("Value of Period:::"+date); // 2011-02-09 is the output
    // Converting the date to string using SimpleDateFormat
                DateFormat df = new SimpleDateFormat("dd-MM-yyyy");
                String date1 = df.format(date);
                System.out.println("String Date::"+date1);
                String date2 = date1.substring(3,5);
                System.out.println("SubString::"+date2);
           // 02 is the out put I am not able to Format the month in SimpleDateFormat("dd-MON-yyyy") to get the
          //  month as FEB is there any converter.
                String date3 = date1.substring(8,10);
                System.out.println("SubString2::"+date3);
         //11 is the out put
            if (period.equalsIgnoreCase(date2.concat(date3)) )
      // after concatinating the format is 02-11 so its going to exception
                System.out.println("Date in the same Period");
            else {
                throw new OAException ("Date Selected is out of range::");
            }I am not able to Format the month in SimpleDateFormat("dd-MON-yyyy") to get the month as FEB is there any converter.
    The logic is working fine but the month is not getting converted.
    Thanks,
    Krishna

  • Notes - how do I get rid of the yellow pad look and get back to a plain white background?

    Someone thought this was a good idea to create a yellow pad look and handwritten note feel.  Someone who doesn't actually have to read back their text when they work.
    I changed the font to Helvetica, but I can't get rid of the lines.  With my eyesight, it makes it harder to read and find things in the note.  I really want a blank white screen as a background. 
    If you feel like you need to go all paper-cutesy, how about a white linen look and feel?  At least that wouldn't have lines running through the text and making me have to work a little harder to decipher the text.

    Hi Cody05,
    Welcome to the Support Communities!
    The articles below may be able to help you with this issue.
    Click on the links to see more details and screenshots. 
    iTunes: Specific update-and-restore error messages and advanced troubleshooting
    http://support.apple.com/kb/TS3694#error2001
    Error 2000-2009 (2001, 2002, 2005, 2006, 2009, and so on)
    If you experience this issue on a Mac, disconnect third-party devices, hubs, spare cables, displays, reset the SMC, and then try to restore. If you're using a Windows computer, remove all USB devices and spare cables other than your keyboard, mouse, and the device, restart the computer, and try to restore. If that doesn't resolve the issue, try the USB issue-resolution steps listed for Error 1604 above. If the issue persists, it may be related to conflicting security software. If the errors persist on another computer and known-good USB cable, the device may need service.
    iOS: Unable to update or restore
    http://support.apple.com/kb/ht1808
    Cheers,
    - Judy

  • What are the functions of look and feel files?

    Hi,
    If some one can explain me what are individual role in look and feel of the ISA B2C application.
    mainFS.jsp
    main_inner.jsp
    catalogFS.jsp
    accountFS.jsp
    refresherB2C.jsp
    I want to know function of each files. If I change any file then where exactly I can see changes which I made.
    Any help from any one highly appreciated.
    Thanks.
    Ashish

    Hi,
    If you get hold of the ISA Development and Extension guide there is a section highlighting which frames go where in the main application.
    You can also see which .jsp pages are displayed where by adding the following parameter to the root URL of the application when you logon.
    http://<host>:<port>/b2c/b2c/init.do?showmodulename=true
    This will display the name of each jsp page in the frames on screen.
    Also, surely you must have been asked to change certain aspects of the application - not specific files?  You shouldn't just change the files and then "see what happens"...
    Hope this helps,
    Gareth.

  • Setting the Brushed Metal look and feel for macs using Java.

    Hello,
    I am relatively new to Java and I am new to Mac-specific java stuff. Anyways, when I try to set the look and feel of my classes to the "apple.awt.brushMetalLook" look and feel, I am unable to. It works if I have System.setProperty("apple.awt.brushMetalLook", "true"); written before I create any swing component. This would be fine, except that means that it is impossible to extend any swing component, such as JFrame or JApplet. Is there a way around this?
    Thanks!

    This might answer your question:
    http://lists.apple.com/archives/Java-dev/2003/Apr/msg00829.html

  • How to get the weblogic's look and feel?

    Have you seen the look and feel of weblogic's 7.0 (or 8.0) workshop.
    It's very beautiful!
    I want to make a skin like that, then I can skin my application use the
    pretty skin, but i can not get the theme of workshop, how can i make it?
    reference: www.javootoo.com www.l2fprod.com

    I beleive 1.4.2 has an automatic upgrade feature that will upgrade people to 1.5 once it is released. The problem is that even though java.sun.com has released 1.5, www.java.com has not, which is where the average person will get Java from.
    Another option is to make a custom ButtonUI (other componenets too if u wish) that will use a Gradient to make those 3D looking buttons. If you dig through the Java source, you will see it.
    As far as old projects having this look, as soon as 1.5 is on www.java.com, most people will automatically upgrade to it assuming they are running XP.

  • What's with the lame Win8 look, and inability to move the address bar?

    Ok.
    In previous version of Firefox, I had my layout like this. Perfectly usable, very small "top/chrome space" so that when I use it on a widescreen monitor I don't have to scroll to get past the top inch of the website (why oh why do PC makers think all we do is watch movies on these things? 788 vertical pix? really? but that's another topic altogether.) Windows 7 made everything have this half inch of ''shiny chrome" on top, I guess for the aero effects to be more obvious, but whatever.
    I'd post the pictures to show the differences, but I cannot. Can someone tell me how I can do that? First my big question is "why the race to make everything look like windows8? 1985 called and want's it's 2d monochrome big text garbage back.
    I need my browser to NOT have 130px wasted at the top. My orignal layout was 75px high. nearly DOUBLE, not to mention the damned plain monochormatic garbage of win8 creeping in.
    How do i fix this?

    Ok.
    Here you go. FF28 vs FF29.
    Why, mozilla, do you muck stuff up for the sake of mucking stuff up?

  • For The Experts: Quick Look and Cover Flow?

    Hi
    I have not been able to find the answer to my question anywhere on the internet. I thought that some of you experts out there may be able to help me.
    I deal with thousands of files all the time that are essentially text files (i.e .txt). I have one problem though. They end with the extension .01 for Jan, .02 for Feb etc. If I rename the extension on one of these files to .txt, I can view them in Cover Flow and I can also see the contents by using Quick Look.
    Unfortunately, I cannot rename the extensions on all these files to .txt, because they need to be sent to various departments and cannot be changed.
    Does anyone know if it is possible to make Cover Flow and Quick Look think that these are text files?
    Thanks...
    Brian.

    Hello. SetFile, just like any other console tool, can accept wildcards. For example:
    Set the attribute of all files in the directory named mydocs:
    <pre>
    /Developer/Tools/SetFile -t TEXT /Users/whuggy/mydocs/*
    </pre>
    You can also use the more powerful 'find' command: Find all files in your 'mydocs' directory that ends with '.01' and set them as a text file:
    <pre>
    find /Users/whuggy/mydocs -name "*.01" -exec /Developer/Tools/SetFile -t TEXT {} ';'
    </pre>
    This means: find stuff inside mydocs directory whose name ends with ".01"; on each item you find execute the command /Developer/Tools/SetFile -t TEXT to it. The '{}' placeholder is substituted with the filepath of an item. And the ';' at the end designates the end of that command.

  • Opening website "this american life" in firefox 4.0.1 causes firefox to crash, but the same site opens and streams radio shows just fine in IE. Suggestions?

    I am trying to stream radio shows through the website for This American Life. As soon as I open the site and click on a link, I get the message about an unresponsive script. The next click to tell it to continue or ignore causes Firefox to crash -- the fade to white/not responding thing. The same site runs just fine on IE.

    надувные <a href="http://www.batut.com.ua">аттракционы для детей аренда</a>, доставка, монтаж

  • Inventory report for the selection of requisitioner and MRP controller

    Hello Experts,
                           Can someone please help me with a standard  Inventory report in which we can give input thr requistioner and MRP controller
    regards,
    YK

    Hi,
    You will get the requisition no. from EKKO (provided PO has been created otherwise you won't get any record). Find out PO & item no. for the requisition item. Then you can check EKBE table whether GR has been posted or not. If GR has not been posted then there won't be entry in EKBE for that PO & item.
    Regards,
    Rakesh

  • Can I have the same site look and behave differently on different platforms

    I want different sites with the same URL's dependent on the device used to access the domain. For instance if a smartphone accessed my domain it would see a mobile specific site and the same for the ipad. I can do this in wordpress but now I have moved over to dreamweaver I can't seem to find the way to do it.
    Hope you can help
    Wo

    Something like this?
    http://detectmobilebrowsers.mobi/
    I am sure you can find a free version too. There is a simple line of code that can detect a mobile device but you are trying to be more specifc.

  • How to generate a html file from a xml file with the default Firefox look and feel

    Hello
    Any xml or xsd file are pretty printed with Mozilla firefox. I would like to generate the equivalent html file, in order to introduce it later in a Word document. Do you use a xslt file ? How can I do this ?
    Best regards

    I would be remiss if I did not point out that the forum software detected your Firefox as version 17. Is that correct?
    Version 17 is not secure; Mozilla discloses [https://www.mozilla.org/security/known-vulnerabilities/firefox.html security flaws] after each new release. Is something holding you back from upgrading to Firefox 31? Please let us know so we can suggest solutions or workarounds.
    If Help > About Firefox shows Firefox 31, you may need to clear the preference that is misreporting your version number. See: [[Websites say that Firefox is outdated or incompatible even though it's the latest version]].

Maybe you are looking for

  • How do i transfer cd's on one computer to another computer?

    i have cd's on my old computer that i imported.  i've purchased a new computer & am having trouble transferring the cd's to the new computer.  it seems itunes will only let me transfer what i purchased from the itunes store.  how do i transfer the cd

  • Help.  Cannot create another user account

    I am trying to add another user account but systems preferences will hang whenever I choose Accounts. It works fine otherwise (any other selections can be made with no problems). When I press accounts it will say loading accounts but never go anywher

  • Issues importing tapes into FCPX

    Hi. I have tried importing some miniDV tapes for the first time into FCPX (latest version). I have had a number of issues: Tape number 1 - Importing the video directly into an event (rather than creating an archive) seemed to split up the shots on th

  • Setting Chapters in Elements 9

    Can anyone please tell me how I set chapter points in Element 9. I dont seem to be able to find this in the help section, thanks

  • I keep getting the "Cannot Connect To Find My Friends" alert

    I keep getting the "Cannot Connect To Find My Friends" alert when trying to accept friends on Find My Friend. I have verified my Apple ID and reset my password. Still no luck. any suggestions...?