How do I track number of correct and incorrect mouse clicks in Hotspot quiz?

Hi All,
I need to create a quiz that allows me to know how many correct answers the user has clicked (there will be 20ish) and how many clicks were incorrect. Is there anyway of doing this?
Many Thanks
Chris M

Hi,
Thanks, I am currently running version 4 of captivate. The intention is that all 20 hotspots will appear in the same slide.
So you can get an idea of the project, it will train users how to proof documents. A document shows on screen users would then click on every error they can spot. For every hotspot not in the correct area (IE over a spelling mistake) gets marked as a different variable (IE You were wrong X times).
Thanks
Chris M

Similar Messages

  • Hello! I am attempting to register a product, my iPad, to my adobe products with its serial number and I am being told that the serial number is invalid. I am certain that the serial number is correct, and am unsure how to proceed.

    Hello! I am attempting to register a product, my iPad, to my adobe products with its serial number and I am being told that the serial number is invalid. I am certain that the serial number is correct, and am unsure how to proceed.

    apart from the fact there's no way I could have answered your question confidently, I was also not able to supply my non-answer within your very tight time constraints.
    what happened? how'd you get on?

  • How does the track pad auto correct miss spelled words?

    How does the Track Pad auto correct miss spelled words, unlike the mouse i can no longer double right click to change the spelling??

    Hey hoopsmiller,
    Thanks for the question. If I understand correctly, you want to turn off auto correct in OS X. It looks like you have already done some troubleshooting. I would recommend that you read these articles, they may be helpful in troubleshooting your issue.
    Since you have already tried to turn it off for all apps, you can try individually.
    OS X Yosemite: Check spelling and grammar
    For a specific app: In the app, choose Edit > Spelling and Grammar > Correct Spelling Automatically (it’s off when a checkmark isn’t shown).
    Mac OS X 10.6: Checking spelling and grammar
    If you don’t see the “Spelling and Grammar” command in the Edit menu, the application doesn’t provide the Mac OS X spell-checking feature. Check the application’s preferences or menus to see if it has its own spelling checker.
    Thanks for using Apple Support Communities.
    Have a good one,
    Mario

  • Getting Correct and Incorrect to show on my GUI

    What am i missing to allow correct and incorrect to show on my GUI.
    package anaquiz;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class AnAQuiz extends JPanel {
        private JComboBox choice;
        private JLabel label;
        private JTextField text;
        Button CheckAnswer;
        Button TryAgain;
        private String Answer1 = "Wilson";
        private String Answer2 = "Ace";
        private String Answer3 = "Yes";
        private String input = " ";
        boolean Answer = false;
        JLabel testresult;
        public AnAQuiz() {
            choice = new JComboBox();
            label = new JLabel();
            label.setBackground(Color.blue);
            choice.addItem("Tennis Question #1");
            choice.addItem("Tennis Question #2");
            choice.addItem("Tennis Question #3");
            text = new JTextField(42); //step 4
            Listener listen = new Listener();
            choice.addActionListener(listen);
            add(choice);
            add(label);
            add(text);
        private class Listener implements ActionListener {
            public void actionPerformed(ActionEvent event ) {
            int c = choice.getSelectedIndex();
                switch (c) {
                case 0:
                    label.setText("Whats the famous tennis brand that begins with 'W'?");
                    if (input.equals(Answer1))testresult = new JLabel("Correct!"); //Having difficulty getting the correct and the incorrect to show as a label
                     else testresult = new JLabel("Incorrect!");
                     break;
                 case 1:
                    label.setText("What do you call when someone misses a serve?");
                    break;
                 case 2:
                    label.setText("Should you shake hands after a match?");
                    break;
        public static void main(String[] args)
            JFrame frame = new JFrame("Quiz");
             frame.getContentPane().add(new AnAQuiz());
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.pack();
            frame.show();

    Basically adding in the code tjacobs01 demo'd for you and a little extra.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class AnAQuiz extends JPanel {
        private int chosen;
        private JComboBox choice;
        private JLabel label;
        private JTextField text;
        Button CheckAnswer;
        Button TryAgain;
        private String Answer1 = "Wilson";
        private String Answer2 = "Ace";
        private String Answer3 = "Yes";
        private String input = " ";
        boolean Answer = false;
        JLabel testresult = new JLabel("");
        public AnAQuiz() {
            choice = new JComboBox();
            label = new JLabel();
            label.setBackground(Color.blue);
            choice.addItem("Tennis Question #1");
            choice.addItem("Tennis Question #2");
            choice.addItem("Tennis Question #3");
            text = new JTextField(42); //step 4
            Listener listen = new Listener();
            choice.addActionListener(listen);
            setLayout(new BoxLayout(this, 0));
            add(choice);
            add(label);
            add(text);
              text.addKeyListener(new KeyAdapter() {
              public void keyPressed(KeyEvent ke) {
                if (ke.getKeyCode() == KeyEvent.VK_ENTER) {
                  input = text.getText();
                  if ( chosen == 0  &&  input.equals(Answer1) )
                    label.setText("Correct");
                  else if ( chosen == 1  &&  input.equals(Answer2) )
                    label.setText("Correct");
                  else if ( chosen == 2  &&  input.equals(Answer3) )
                    label.setText("Correct");
                  else
                    label.setText("Incorrect");
            add(testresult);
            testresult.setVisible(false);
        private class Listener implements ActionListener {
            public void actionPerformed(ActionEvent event ) {
            chosen = choice.getSelectedIndex();
            testresult.setVisible(true);
                switch (chosen) {
                case 0:
                    label.setText("Whats the famous tennis brand that begins with 'W'?");
                    break;
                 case 1:
                    label.setText("What do you call when someone misses a serve?");
                    break;
                 case 2:
                    label.setText("Should you shake hands after a match?");
                    break;
                 default:
                    break;
                text.requestFocus();
        public static void main(String[] args)
            JFrame frame = new JFrame("Quiz");
            frame.getContentPane().add(new AnAQuiz());
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.pack();
            frame.setVisible(true);
    }

  • How to find accurate number of Rows, and size of all the tables of a Schema

    HI,
    How to find the accurate number of Rows, and size of all the tables of a Schema ????
    Thanks.

    SELECT t.table_name AS "Table Name",
    t.num_rows AS "Rows",
    t.avg_row_len AS "Avg Row Len",
    Trunc((t.blocks * p.value)/1024) AS "Size KB",
    t.last_analyzed AS "Last Analyzed"
    FROM dba_tables t,
    v$parameter p
    WHERE t.owner = Decode(Upper('&1'), 'ALL', t.owner, Upper('&1'))
    AND p.name = 'db_block_size'
    ORDER by 4 desc nulls last;
    ## Gather schema stats
    begin
    dbms_stats.gather_schema_stats(ownname=>'SYSLOG');
    end;
    ## Gather a particular table stats of a schema
    begin
    DBMS_STATS.gather_table_stats(ownname=>'syslog',tabname=>'logs');
    end;
    http://www.oradev.com/create_statistics.jsp
    Hope this will work.
    Regards
    Asif Kabir
    -- Mark the answer as correct/helpful

  • How to segragate correct and incorrect records in a msg

    Hi All,
    I am working on a file-XI(BPM)-Oracle scenario.
    My input file has a field 'Applicant No', which is mandatory in the Oracle table.
    In my BPM, I have a transformation generating two message types, one for the corect msg and the other for the error.
    Next what i am doing it by means of 'Fork Step' in BPM i am segragating these msgs and sending the correct ones to the Oracle table and the erroneous ones to a file in the sender system.
    At runtime my input file contains two records, one correct and the other incorrect.
    But both the records are getting sent two both the receivers i.e in sender an error file is getting created with both the records and both the records are also trying to get inserted into the database.
    How can i overcome this problem? Is there any step in BPM which can actuaaly seperate out the two records?
    Pls guide
    Thanks in advance
    Regards
    Neetu

    Hi,
    Please use Switch and define your condition in the swtich based on which you want the data to flow to either file or JDBC.
    From SAP Help:
    You use a fork () when you want to continue a process in branches that are independent of each other, for example, to communicate with two systems that are independent of each other. The branches of the fork join in a union operator.
    You use a switch () to define different processing branches for a process. The Otherwise processing branch is created automatically.
    You define a condition for each processing branch (see also: Condition Editor). The condition is checked at runtime. The process is continued in the branch that is first to return the value true. If no branch returns the value true, then the process is continued in the Otherwise branch.
    Regards
    Vijaya

  • Received iPhone 5 (UK) tracking number, confirmation email and text. Number not working in UPS. I pre-ordered at 9:30am 14/09/12 in UK. Anyone else having this trouble?

    Can anyone tell me what they think might be happening here with UPS?
    Is it because it takes a while for UPS to get the tracking number on the system...?
    It's a bit stupid to provide a tracking number so soon, if tracking isn't even available yet. Doesn't make sense!
    Maybe I am too impatient, but who isn't, right? :-)

    Yeah im in the exact same position, apple said it's shipped and showed tracking numbers on their website but the ones I saw were invalid tracking numbers for UPS(10 characters), I then phoned Apple and the lady their gave me the actual tracking number(18 characters) which was a pre-signed number meaning it had not been activated on the UPS system, she said wait till tomorrow(20th) or Friday morning and it will be activated.
    I'm personally pretty sure it will be activated sometime tomorrow.

  • Suitable Exit/BADI for populating Requirement Tracking Number in PO and PR

    Hi all,
    I need help from you all. I need a single exit or badi which will trigger before saving any PO or PR while creating.
    For PO, it should handle 3 possible cases.
    1. Tcode : ME21
    2. Tcode : ME21N
    3. BAPI function module (Ex: BAPI_PO_CREATE1)
    For PR, it should also handle 3 possible cases
      1. Tcode : ME51
      2. Tcode : ME51N
      3. BAPI function module (Ex: BAPI_PR_CREATE)
    I need to populate Requirement Tracking Number (BEDNR) field in the line item from a custom number range object and also have to update a custom table.
    Please suggest...
    Raj

    Hi
    <b>At runtime, you will get the GUID in the BADI Interface.</b>
    Incase this BADI does not help, go for another BADI
    1) <u>BBP_SEND_MEDIUM_MODE</u>     
    (Determines the Default Settings for the Send Medium)
    2) '<u>BBP_OUTPUT_CHANGE_SF'</u>.
    <u>Here are some related links -></u>
    Re: PO output medium issue
    Re: SRM PO SMARTFORM
    Re: Control PO output to vendor
    Re: Add a Printer ?  -> LP01
    Hope this will help.
    Regards
    - Atul

  • How to count the number of Fridays and Saturdays between two dates

    Hi every one ... If we want to count the number of Fridays and Saturdays between two dates, how would we do that ? !
    Dates are ( 11-Feb-2010) to (19-May-2010)
    how to do it in SQL
    Edited by: khalidoracleit on Jul 28, 2010 5:51 AM

    some nice coding here, I'm still amazed with what some people can do with "connect by". But I agree with some statements here that this can take "time", and to be honest, it's funny to see it working, but if you do not have a computer, just a calendar and some paper, would you go for "counting" so there must be a better solution?
    The best working math in here is done by Aketi Jyuuzou, who writes so good English that I wonder why he still insists that he doesn't ;-)
    Anyhow I "translated" that code to English, and I really like that math. Math is math and data is data.
    ALTER SESSION SET NLS_DATE_LANGUAGE='ENGLISH';
    WITH my_dates AS (
    SELECT to_date('20100211','yyyymmdd') start_date,to_date('20100519','yyyymmdd') end_date FROM DUAL
    UNION ALL
    SELECT to_date('20100211','yyyymmdd') start_date,to_date('20100214','yyyymmdd') end_date FROM DUAL
    UNION ALL
    SELECT to_date('20100211','yyyymmdd') start_date,to_date('20100213','yyyymmdd') end_date FROM DUAL
    UNION ALL
    SELECT to_date('20100211','yyyymmdd') start_date,to_date('20100212','yyyymmdd') end_date FROM DUAL
    SELECT to_char(start_date,'DD.MM.YYYY') start_date,to_char(end_date,'DD.MM.YYYY') end_date,
           to_char(start_date,'DAY') start_weekday,to_char(end_date,'DAY') end_weekday,
           end_date-start_date day_difference,
           (next_day(end_date,'FRIDAY')-7
           -next_day(start_date -1,'FRIDAY'))/7+1
           +(next_day(end_date,'SATURDAY')-7
           -next_day(start_date -1,'SATURDAY'))/7+1 as count_of_fr_and_sat
    FROM my_dates;
    START_DATE END_DATE   START_WEEKDAY                        END_WEEKDAY                          DAY_DIFFERENCE         COUNT_OF_FR_AND_SAT   
    11.02.2010 19.05.2010 THURSDAY                             WEDNESDAY                            97                     28                    
    11.02.2010 14.02.2010 THURSDAY                             SUNDAY                               3                      2                     
    11.02.2010 13.02.2010 THURSDAY                             SATURDAY                             2                      2                     
    11.02.2010 12.02.2010 THURSDAY                             FRIDAY                               1                      1                      -- andy

  • How I get random number between 1 and int number ?

    how can I get random number between 1 and int number
    like between 1 and 10 etc.
    10x

    Use the nextFloat() method of the Random class, this returns a random number between 0.0 and 1.0. To get and integer range from that multiply the return value of that method call by the integer range you need (in this case 10), and add the starting number you want returned in the range (1 in this case). The code below works for numbers 1-10.
    Random r = new Random();
    int x = (int)(r.nextFloat()*10) +1;

  • How to count the number of dirty and clean block

    i want to count the number of dirty and clean block.
    because i want to know which datablock is updated.

    I dont think it is possible to count the no. of dirty and clean blocks. But we can understand the implications of intelligent calculation by understanding when the blocks are marked dirty and clean.
    Here are few cases.
    There are four definable circumstances under which datablocks are marked dirty, thereby making them eligible for calculation on the next round using intelligent calc.
    1. Input Data: Any block created from a data load or lock & send is automatically marked dirty when created.
    2. Modified Data: Any block for whom a data cell has been modified is marked dirty and therefore eligible for calculation using intelligent calc on the next calculation round.
    3. Ancestors Of Condition 1 & 2
    4. Restructure The Database: Blocks changes as a result of outline changes potentially become dirty.
    There are three definable circumstances under which Intelligent Calc operates, thereby marking blocks clean.
    1. Calc Dim On All Dimensions: When you execute a calc script which contains a CALC ALL statement or CALC DIM statement whose arguments include all dimensions.
    2. Set ClearUpdateStatus After: SET CLEARUPDATESTATUS AFTER is a calc script command that will engage Intelligent Calc for any calc script regardless of construction.You typically use this command where you cannot meet the conditions in 1 above for a Calc Dim on all dimensions.
    3. Set ClearUpdateStatus Only: SET CLEARUPDATESTATUS ONLY is a calc script command that does not calculate. When included in a calc script, this command only
    marks dirty blocks clean. That's all.

  • Diable "open dialog box" on right mouse click so I can use l mouse to advance to next slide and r mouse click to "go back."  How in PP 2010 for mac????

    I do presentations in PP10.  I am new to macair, and used to Windows.  HOW DO I DISABLE THE "OPEN DIALOG BOX ON RIGHT CLICK"?  I would like to use L mouse to advance slide, and R mouse to go back.  The default is to use R mouse to open dialog box.  I can disable this by unchecking the box in "advanced" on the PC.  How do I do it with the Mac????
    Thanks
    hacmd

    Hi Rod,
    As originally stated in my opening post, the SWF is to be inserted into an Articulate '13 slide (what I called an aggregator originally - I tried not to bring them up since I don't want the chatter about "There's your problem - using Articulate"! ).
    Recall that posting this published file to our LMS did not allow right-mouse click functionality as the flash player menu just gets in the way.
    If I insert the captivate 6 files into Articulate as a Web Object (referencing the entire folder with html, htm and assets, and then posted to our LMS, and it DOES allow RM click operations in both IE and FF (although no sound on the Captivate slide in FF). But this is not what we want to do as this introduces 2 navigation controls (the Captivate one and the Articulate Player).
    Why must anything be posted to a web server for this functionality to work?
    I am able to go into the Captivate 6's published folder, and launch the Captivate demonstration by simply double clicking on the index.html file and this works great in both FF and IE after changing the security settings for flash.
    Again - I can not believe I am the only one out there trying to use the right-mouse click feature to do a software simulation by embedding the Captivate SWF into an Articulate '13 project.

  • Distinguish left and right mouse click

    I am making some demo, I don't use any narration. How do I
    tell the viewer when to use left mouse click and when to use right
    mouse click? Can it be done automatically?

    Hello Simon,
    Hmmm, I don't think that there is anything in Captivate that
    will automatically let the leaner know that you are
    right-clicking...Here are some of the things that I might try.
    1. Adding a text caption that notifies the learner that I am
    right-clicking
    2. At the very start of the demonstration point out to
    learners that when they hear a certain sound this is an indication
    that I am right-clicking.
    3. Create a small animation that shows pressing the right
    mouse button
    4. Use one of the existing animations that you can find in
    the Adobe Captivate 2 gallery such as visual clicks and again point
    out at the beginning of the demo that when they see this animation
    you are performing a right-click action, you could also record or
    import audio onto your animation if you so desired.
    Those are my (of the top of my head) thoughts . I am sure
    that there are others.
    Regards,
    Mark

  • Running bootcamp and right mouse click on windows

    Hi all, I was just looking to setup WinXP on my machine and wanted to know how my macbook pro laptop mouse would deal with the right mouse click on windows? If I dont have an external mouse plugged into the laptop is there no right mouse click available?
    Thanks!

    Download a program called AppleMouse at http://www.softpedia.com/get/Desktop-Enhancements/Other-Desktop-Enhancements/App le-Mouse-Utility.shtml. Unzip it the copy-and-paste "applemou.exe" to this directory through Windows Explorer: C:\Documents and Settings\YOUR USER NAME\Start Menu\Programs\Startup. Once copied, restart your computer back into Windows and login. You'll be able to right-click by holding down the control (ctrl) button and clicking.
    MacBook Pro 17" 2.16GHz, 120GB, 2GB, Matte, 120GB USB Western Digital HDD   Mac OS X (10.4.6)   Windows XP Dual-Boot, Toasting Over 189.6 degrees Fahrenheit in CoreDuoTemp

  • How do i code to eliminate an enemy upon mouse click?

    I need to figure out how to eliminate an
    enemy upon mouse click. I have a crosshair movie clip that im using because it follows the mouse. i need it to eliminate an enemy using the center of the crosshair when i click on them. This is for my schools senior project. Please Help. Thanks.

    this.onMouseDown=function(){
    if(enemy.hitTest(this._xmouse,this._ymouse)){
    enemy.swapDepths(this.getNextHighestDepth());
    enemy.removeMovieClip();

Maybe you are looking for

  • Nesting Data table Components

    Hi , I am having a problem using the new data table component in SJSC 2 EA2. I need to have data table nested inside the colum of a outer datatable. I assign the sourcedata propertiy of the first table to a ObjectArrayData Provider. Then i set one of

  • Solution manager CHARM workflow.

    I have configured workflow using http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d06db8e2-5036-2c10-1a97-dee1364fcec8?QuickLink=index&overridelayout=true. On testing part, when i am creating change request, it is just generating pl

  • Imovie slow to save to file

    When I want to Share iMovie project to file it takes over 10 hours for it to process to the theatre or file as an mp4? Why does it take 10 hours to share a project in iMovie????? All of this program is slow, it is not user friendly, and like PC items

  • Is there a problem with the my iPod touch?

    Hey guys, I have had my iPod touch since Christmas and have been experiencing a problem with it ever since. So here is the problem: Sometimes I will listen to music, then pause it, click the button to turn of the screen, but I do not turn it off... L

  • Implementing BW

    Hello all, What are the general stages involved in setting up BW system? We have installed BW 7.0 and connected it to a source system (R3 4.7).  Any help on this matter would be appreciated. Thanks, Nick.