How can I show the correct answers in a quiz on Adobe Presenter 10?

Hi all.
I'm newer on Adobe Presenter.
I've finished all questions on the quiz, but I like to show the correct answer after the user select a wrong answer and submit it.
I've tried many thing and the correct answer isn't displayed.
Thanks.
Rafael.

The correct answers are displayed after the quiz is completed and the user Reviews the quiz. If you want the correct answer to be revealed to the user in the quiz, then you will need to customize the feedback messages to state the correct answer. They are just text boxes on the slides, so you should be able to easily add text to them.

Similar Messages

  • How can I show the correct word?

    I run this script.
    create table a (c1 nvarchar2(10));
    insert into a values ('aaaa');
    Then I make data block about table a,then query it in a base form. But when I execute,the result is "####" instead of "aaaa".
    Does anybody can tell me why and how to resolve? Thanks so much.
    My environment is:
    Oracle 9i Database 9.2.0.1.0
    Form builder 6.0.8.11.3
    WIN2K Advanced Server English Version
    System Default Language is: simplified Chinese
    Database Character set is default when setup.

    Thanks Carlos Gongora
    I have try to make canvas->frame->item->property->data->Maximun length The same as the length of the column in table. But it doesn't work.
    See this.
    create table t2 (c1 char(1), c2 char(2), c3 nchar(1), c4 nchar(2));
    insert into t2 values ('a', 'bb', 'c', 'dd');
    then the query result is "a, bb, #, ##"
    maybe the problem is in unicode.
    But I still can't correct it.

  • Hi, can you help?  My emails that I have received show the date received as either today, yesterday or July 28.  How can I get the correct date received?

    Hi, The emails that I have received show the date received as either today, yesterday or July 28.  How can I get the correct date received?

    That's very scary. They might do it, but I personally have never had Apple contact me re id's except on their site when signing in. I suggest you DO NOT respond until you have a phone conversation with Apple security. They can verify if they sent you the e-mail and why.
    While it's very possible it's true,again, I suggest you not respond until you speak to someone at Apple. I've often read here that when people sign in they are not allowed to because "someone else has used the id" type of statement.
    Also, you should be able to go to the app store and see what apps you have downloaded.
    Though it could have been a free app, have you checked to see if any were bought with your id account?
    I've gotten these types of e-mails from places like USPS and FedEx which look amazingly authentic and were from their website. I also received an odd e-mail from my cousin in Ireland last year that clearly was not from him. It was also sent to others in his family in Ireland. I e-mailed him that I only opened it because it had a .ie, but suggested he change... Days later I received mail from 'him' - same name, but at yahoo.com. 
    Again, I would call Apple. You can also report it at [email protected], but I would not settle for that given your situation. If nothing else, call Apple sales (sales depts. anywhere answer fast) and ask them to transfer you to security. Apple will not want anybody accessing their name, and while it's unlikely, it's not impossible that it is someone phishing.
    Hope this helps and can you let the support community know your results by posting on this thread when you're done? Thank you.
    Hope this helps.

  • Whenever I update my iPhone software, it asks me to sign in to iCloud with an old email address.  My other devices all have the correct address.  How can I get the correct address for my iPhone?  The only Apple ID that works for logging in is my new one.

    Whenever I update my iPhone software, it asks me to sign in to iCloud with an old email address.  My other devices all have the correct address.  How can I get the correct address for my iPhone?  The only Apple ID that works for logging in is my new one.

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPhone (if you're using iOS 7), then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https//appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, tap Edit, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • How can I Locate the correct filepath in a jsp page?

    In http://localhost:8080/myweb/a.jsp, I will call a java bean file which is locate in http://localhost:8080/myweb/WEB-INF/classes/haha/DBConnection.class. This java file requires to read an external file which locates in http://localhost:8080/myweb/WEB-INF/classes/haha/db.txt
    My question is how can I get the correct filepath in this environment?
    inputStream = new BufferedReader(new FileReader(????????));
    Only this will work
    inputStream = new BufferedReader(new FileReader("D:\Program Files\Apache Software Foundation\Tomcat 5.5\db.txt"));
    But no one will place the file here, and it is impossible to do this when upload to 3rd party hosting.
    Any suggestion? thx.

    Thx all, in a jsp page, calling this method is fine.
    ServletContext s = getServletContext();
    String a = s.getRealPath("/");
    In a Servlet file, below method is ready to use:
    String b = getServletConfig().getServletContext().getRealPath("/");
    My problem is, I have a jsp page, which initialize a java bean , this java file is responsible for Database Connection, which will read the external text file to get the login, password and database name. So I won't need to recompile this file every time when I place in different platform with different configuration. I only need to edit the text file is ok.
    But How can I get the absolute file path when that jsp page initialize that java bean file? Below is my error, any suggestions are thx.
    package sql;
    import java.sql.*;
    import java.util.ArrayList;
    import java.io.FileReader;
    import java.io.BufferedReader;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class DBConnection extends HttpServlet{
    public String sql = null;
    public Connection con = null;
    public Statement statement = null;
    public ResultSet rs = null;
    private BufferedReader inputStream = null;
    private static ArrayList<String> arr = new ArrayList<String>();
      public DBConnection(){
        String fs = System.getProperty("file.separator");
        ServletContext s = getServletContext();
        String realpath = s.getRealPath("/");
        String filepath = realpath + "WEB-INF"+fs+"Properties"+fs+"db.txt";
        try{
          inputStream = new BufferedReader(new FileReader(filepath));
          String l;
          while ((l = inputStream.readLine()) != null) {
            arr.add(l);
          Class.forName("com.mysql.jdbc.Driver");
          this.con = DriverManager.getConnection("jdbc:mysql://localhost:3306/"+arr.get(0)+"?user=" +arr.get(1)+ "&password="+arr.get(2)+"&useUnicode=true&characterEncoding=utf-8");
          this.statement = this.con.createStatement();
        }catch (Exception e){
          System.err.println(e.getMessage());
        }finally{
    }java.lang.NullPointerException
         javax.servlet.GenericServlet.getServletContext(GenericServlet.java:159)
         sql.DBConnection.<init>(DBConnection.java:20)
         html.ShowCategory.<init>(ShowCategory.java:17)
         org.apache.jsp.left_jsp._jspService(left_jsp.java:66)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)

  • How can I show the chart in forms?

    Dear all:
    I want to create a line chart. I use the chart wizard and it is successful to create the chart. But, it can't show the chart when I run the form. How can I show the chart in form6i?
    Besides, I see a document that refer to 'OG.pll'.
    I can't find the OG.pll in form6i. Do I need 'OG.pll' to show the chart when I run the form? Thank you very much!!

    Hi Carlos,
    You can try to create a code node for check which signature to print.
    In global variable declare a variable ie named g_sign type TDOBNAME.
    Then pass this var to name of graphics &g_sign&
    please check and reply.
    regards,

  • How can i show the first item in the list as selected item

    Aslam o Alikum (Hi)
    Dear All
    How can i show the first item in the list as selected item when user click on the list. Right now when user click the list the list shows the last item in the list as selected or highlighted. Furthermore if the list item have large no of value and a scroll bar along with it then the list scroll to last item when user click it with mouse. I want that when user click the list item with mouse list should show the first item as highlighted.
    Take Care
    Allah Hafiz

    Hi!
    You can set list "initial value" using When-Create-Record trigger.
    I.g.
    :<Block_name>.<list_item_name> := Get_List_Element_Value('<Block_name>.<list_item_name>', 1);

  • How can I show the photos of the person that im calling? now that im using IOS 7 when i want to call someone the photo /imagine does not appear , how can i fix it? iPhone 5, iOS 7

    how can I show the photos of the person that im calling? now that im using IOS 7 when i want to call someone the photo /imagine does not appear , how can i fix it?
    iPhone 5, iOS 7

    jlfcba wrote:
    IOS 7.1.1 doesn't show a "days to sync" parameter anywhere in SETTINGS/Mail,Contacts,Calendars/ACCOUNTS/GMAIL Account/ GMAIL Acccount Info.  There is nothing in iTunes relating to such an option either.  So, it seems I'm back to square one.
    If you have a decent mail provider like Microsoft Hotmail or Outlook.com mail it does.
    If you have Gmail it does not.  Quite right. Gmail is rubbish.

  • How can I use the "Correct camera distortion" filter and process multiple files in PSE 11?

    How can I use the "Correct camera distortion" filter and process multiple files in PSE 11?

    Did you check the help page for Correct Camera Distortion and Process multiple file
    Correct Camera Distortion: http://helpx.adobe.com/photoshop-elements/using/retouching-correcting.html#main-pars_headi ng_5
    Process multiple files: http://help.adobe.com/en_US/photoshopelements/using/WS287f927bd30d4b1f89cffc612e28adab65-7 fff.html#WS287f927bd30d4b1f89cffc612e28adab65-7ff6

  • I would like to know how can I have the templates from premiere as customer of adobe creative cloud

    I would like to know how can I have the templates from premiere.
    I am Adobe Creative Cloud member.
    Thanks
    Dmitre Raposo

    Not sure what you are referring to. If you have any files MIA, simply re-download and reinstall the app via AAM.
    Mylenium

  • How can I view the contents of a free trial for adobe fireworks cs6 on mac

    how can I view the contents of a free trial for adobe fireworks cs6 on mac.
    My friend told me to find the application in finder then hit control and click it and then it should give you the option to click
    "view package contents"
    This was not the case
    please help thank you

    When posting in Apple Communties/Forums/Message Boards.......It would help us to know which iMac model you have, which OS & version you're using, how much RAM, etc. You can have this info displayed on the bottom of every post by completing your system profile and filling in the information asked for.
    CLICKY CLICK---> https://discussions.apple.com/docs/DOC-3602
    CLICKY CLICK-----> Help us to help you on these forums

  • For some reason, when I access FINDER I only can see my files alphabetically, by kind, date etc. In can't see the "tree" of the folders. How can I show the files contained in a folder as a group?

    How can I:
    - Display the tree structure of the folders.
    - Display my files grouped by folders

    Do you mean when you do a Save, or when you click on the Finder icon on your Dock?
    If it's the former click on the arrow to the right of the Save to reveal full finder.
    If it's the latter show the Finder Sidebar and choose your Home folder.

  • How can I show the bookmarks toolbar in Firefox 6 all the time?

    The bookmarks toolbar is hidden by default in Firefox 6, and "view bookmarks toolbar" will only show it until a link is clicked or the tab is changed. How can I display the bookmarks toolbar in Firefox 6 all the time?

    On your toolbar area right click an empty space and open Customize.
    Then drag the bookmark icon up to your toolbar area and drop.

  • How can i show the dialog of certificates when tring to sign (like CAPICOM)

    Hi,
    I'm using "Windows-MY","SunMSCAPI" to choose a certificate from the keystore to sign a document.
    1) Can i show a dialog containing the certificates in the key store like in CAPICOM?
    2) To find a solution i 've found this code (CAPICOM + JAVA) her http://www.jensign.com/JavaScience/www/CertContext/CertContext.txt
    when i compile it, "com.ms.com" et "capicom" are missing ??
    Thank You in advance for any help

    nbbbn wrote:
    In the other words how can i call the *"certificate selection dialog box"* from source code?You can't " call the *"certificate selection dialog box"* from source code" as such. What one can do is iterate through the keys and certificates in the keystore and use the results to populate a dialog.
    The problem I have is that you seem to not want to go through the documentation. Most people here will assist when you have problems but they do like to see some effort. If you had read though the JCE tutorial and done a Google search then you would have found out how process the content of a keystore. If at this point you still had a problem then posting the problem code would likely to be profitable but ...
    Best of luck.

  • How can I show the fifth elements (f.e.) in a select

    I want to display the last elements of a table. For example, the last fifth elements. I have a field called id, and the elements are ordered by the id. I use order by, but the select display me all the elements, not only the fifth last elements.
    I don't know how can I display the last id's.
    Thanks

    Like this?
    SQL> select empno
      2       , ename
      3    from emp
      4   order by empno
      5  /
                                     EMPNO ENAME
                                      7369 SMITH
                                      7499 ALLEN
                                      7521 WARD
                                      7566 JONES
                                      7654 MARTIN
                                      7698 BLAKE
                                      7782 CLARK
                                      7788 SCOTT
                                      7839 KING
                                      7844 TURNER
                                      7876 ADAMS
                                      7900 JAMES
                                      7902 FORD
                                      7934 MILLER
    14 rijen zijn geselecteerd.
    SQL> select empno
      2       , ename
      3    from ( select empno
      4                , ename
      5                , row_number() over (order by empno desc) rn
      6             from emp
      7         )
      8   where rn <= 5
      9   order by empno
    10  /
                                     EMPNO ENAME
                                      7844 TURNER
                                      7876 ADAMS
                                      7900 JAMES
                                      7902 FORD
                                      7934 MILLER
    5 rijen zijn geselecteerd.Regards,
    Rob.

Maybe you are looking for

  • Iphone 4 disconnecting and connecting repeatedly while playing music on PC

    I've been having this problem from day 1 when trying to play music on my pc before I add it to my iphone while its hooked up to my windows 7 pc, it just starts disconnecting and connecting over and over again and as soon as I stop playing music its f

  • Painting / Replacing the texture of an item in a photo - please help

    Hi. I've got about 20-30 photos for a pottery distributer. The problem is, they don't have photos of the pottery items in one of the textures they carry. So, in short, I need to know if it's possible to do the following. Replace the color & texture o

  • Selection screen fields in which values have been entered

    Hi All, Is there any standard function module which enables us to determine which fields on the selection screen have values entered for them. In other words, I wish to determine which selection screen fields are no longer initial. Thanks and Regards

  • BIB-9509 on Cube Viewer

    After generating a cube with 4 dimensions, the error message below was returned. When only using 3 dimensions everything was fine. Now I can't view any cubes, either 3 or 4 dimensions. BIB-9509 The Olap Service did not create cursor. oracle.express.E

  • Frequent link corruption

    I've had quite a few issues with text links recently. When I post a text link which ends in / like this one, it works fine, but sometimes when I post a link like that one [which suddenly works even though it didn't when I posted it in another section