How do I know quiz results per question using Javascript

We have some quizzes in Captivate and we would like to extract quiz results per question so that we know which question the user did correct and which one was incorrect. The requirement is that we do not want to code inside Captivate as the Captivate movies are provided by the users, so all code needs to be done would be in Javascript on the HTML page.
Any ideas are welcome.
Thank you
Kirmani

Have a look at Jim Leichliter's blog site. Lately he published a video course about using JS in Captivate, that could be useful.
http://captivatedev.com/2014/01/02/javascript-video-series-adobe-captivate-7/
Lilybiri

Similar Messages

  • How do i know if my macbook can use airplay with apple tv?

    how do i know if my macbook can use airplay with apple tv?

    AirPlay Mirroring needs an Early 2011 or newer MacBook Pro, so your computer supports AirPlay Mirroring. Make a backup, open App Store and purchase OS X Mountain Lion

  • How do I know if my iPad is using wifi or cellular?

    I've just got a sim card for my iPad. How do I know if my iPad is using 3G or Wi-Fi?

    if you have a wifi connection (shown in wifi symbol in top right of display) you will always use wifi over 3g

  • How can i know which index will be used when executing the query ?

    1 ) I have query in which i have 3-4 tables but there multiple index on one column .
    so how can i know which index will be used when executing the query ?
    2) I have a query which ia taking too much time . how can i know which table is taking too much time ?
    3) Please Provide me some document of EXplain plan ?

    Hi Jimmy,
    Consider the below example
    /* Formatted on 2011/02/04 21:59 (Formatter Plus v4.8.8) */
    CREATE TABLE FIRST AS
    SELECT * FROM all_objects;
    UPDATE FIRST
    SET object_name = 'TEST'
    WHERE owner != 'SCOTT';
    CREATE INDEX idx_first ON FIRST(object_name);
    SELECT *
    FROM FIRST
    WHERE object_name = 'TEST';
    It has not used index
    Execution Plan
    Plan hash value: 2265626682
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 58678 | 7334K| 163 (4)| 00:00:02 |
    |* 1 | TABLE ACCESS FULL| FIRST | 58678 | 7334K| 163 (4)| 00:00:02 |
    /* Formatted on 2011/02/04 21:59 (Formatter Plus v4.8.8) */
    SELECT *
    FROM FIRST
    WHERE object_name = 'emp';
    This has used the index
    Execution Plan
    Plan hash value: 1184810458
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 128 | 1 (0)| 00:00:01 |
    | 1 | TABLE ACCESS BY INDEX ROWID| FIRST | 1 | 128 | 1 (0)| 00:00:01 |
    |* 2 | INDEX RANGE SCAN | IDX_FIRST | 1 | | 1 (0)| 00:00:01 |
    From this we can come to the conclusion that, whether to use one index or not by oracle
    would also depend on the data which is present in the table. This has to be this way as
    we see in the bind peeking, if oracle sticks to only one plan, say only use the full table
    scan, it would be a performance hit when it searches for the second query ie where object_name
    ='emp';
    2.
    If we have a query like below.
    select * from emp
    where upper(ename) = upper(:p_ename);
    Evenif we have the index on ename column, oracle wouldn't be able to use the index, as there is a function in the predicate column. If you need oracle to use the index, we need to create a function based index as below.
    Create index idx_ename on emp(upper(ename));
    Regards,
    Cool

  • Difference between photoshop cc and photoshop cc 2014   how do i know which one I am using?

    difference between photoshop cc and photoshop cc 2014   how do i know which one I am using?

    Hi Petereas,
    Both are different version of Photoshop application.
    In Photoshop CC 2014 there are several new feature introduced than CC.
    Please refer the following page on whats new in Photoshop 2014.
    Photoshop Help | New features summary
    When you go to Help>About Photoshop then Photoshop 2014 shows version 2014.0.0 Release.
    Hope this helps.
    Thanks and Regards,
    Sumit Singh

  • How does one know whether or not they use "Java applets"?

    The support doc for the recent Java update (Update 8, for Snow Leopard), entitled "About Java for Mac OS X 10.6 Update 8," advises the following:
    If you do not use Java applets, it is recommended that you disable the Java web plug-in in your web browser.
    How does one know whether or not they use "Java applets"?
    Thanks.
    URL:  http://support.apple.com/kb/HT5243

    K.S. wrote:
    dymar wrote:
    Also, how would I know that a missing applet was causing some feature(s) not to work in a situation where no error mesage was returned?
    Sometimes you have to dig to find out: http://earthnow.usgs.gov/earthnow_app.html
    doesn't tell you directly, but it is mentioned in the FAQ that Java is required. If the content is appropriate, you can always ask here.
    Thanks.  According to that webpage, my "Java is out of date."  When an error message like that is returned, I guess it's clear that "it's a Java problem."  Presumably, one would then just go to java.com and download the applet if he/she wanted to view the webpage.
    I was wondering more about situation when unexplained problems that involved missing Java applets weren't noted in error messages.
    But maybe I'm worrying about something that doesn't really need to be worried about.

  • How can i know if my query is using the index ?

    Hello...
    How can i know if my query is using the index of the table or not?
    im using set autotrace on...but is there another way to do it?
    thanks!
    Alessandro Falanque.

    Hi,
    You can use Explain Plan for checking that your query is using proper index or not. First you need to check that Plan_table is installed in your database or not. If it is not there THEN THE SCRIPT WILL BE LIKE THIS:
    CREATE TABLE PLAN_TABLE (
    STATEMENT_ID VARCHAR2 (30),
    TIMESTAMP DATE,
    REMARKS VARCHAR2 (80),
    OPERATION VARCHAR2 (30),
    OPTIONS VARCHAR2 (30),
    OBJECT_NODE VARCHAR2 (128),
    OBJECT_OWNER VARCHAR2 (30),
    OBJECT_NAME VARCHAR2 (30),
    OBJECT_INSTANCE NUMBER,
    OBJECT_TYPE VARCHAR2 (30),
    OPTIMIZER VARCHAR2 (255),
    SEARCH_COLUMNS NUMBER,
    ID NUMBER,
    PARENT_ID NUMBER,
    POSITION NUMBER,
    COST NUMBER,
    CARDINALITY NUMBER,
    BYTES NUMBER,
    OTHER_TAG VARCHAR2 (255),
    PARTITION_START VARCHAR2 (255),
    PARTITION_STOP VARCHAR2 (255),
    PARTITION_ID NUMBER,
    OTHER LONG,
    DISTRIBUTION VARCHAR2 (30))
    TABLESPACE SYSTEM NOLOGGING
    PCTFREE 10
    PCTUSED 40
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 10240
    NEXT 10240
    PCTINCREASE 50
    MINEXTENTS 1
    MAXEXTENTS 121
    FREELISTS 1 FREELIST GROUPS 1 )
    NOCACHE;
    After that write the following command in the SQL prompt.
    Explain plan for (Select statement);
    Select level, SubStr( lpad(' ',2*(Level-1)) || operation || ' ' ||
    object_name || ' ' || options || ' ' ||
    decode(id, null , ' ', decode(position, null,' ', 'Cost = ' || position) ),1,100)
    || ' ' || nvl(other_tag, ' ') Operation
    from PLAN_TABLE
    start with id = 0
    connect by
    prior id = parent_id;
    This will show how the query is getting executed . What are all the indexes it is using etc.
    Cheers.
    Samujjwal Basu

  • How to read data from the data provider using javascript

    Hi,
    Please let me know how to read the data from the dataprovider using javascript(query assigned to the data provider).
    My query has filter charateristics, free charateristics, charateristics in rows and key figure in column.
    Thanks a lot for your kind help
    Regards
    Kandasamy

    Kandaswamy,
    Assign an ID to your table item , then in JavaScript , you can use ID.innerHTML and you will get the HTML code within that table for the same , then you can find out how best to get the exact value you desire from the innerHTML value which is a string with the entire HTML from within the table item.
    Arun
    Hope it helps....

  • How to dynamically create a treeview in sharepoint using javascript or jquery

    How to dynamically create a treeview in sharepoint using javascript that displays spsites ,spweb,splist

    Hi,
    In SharePoint 2010, we can customize web service and use Server Object Model to get all the SharePoint sites, webs and lists, then call the web service using jQuery and using the jQuery Treeview plugin to display the data.
    The following articles for your reference:
    Walkthrough: Creating a Custom ASP.NET Web Service
    https://msdn.microsoft.com/en-us/library/office/ms464040%28v=office.14%29.aspx?f=255&MSPPError=-2147217396
    Using Jquery to call an ASMX service in sharepoint 2010
    http://stackoverflow.com/questions/9035539/using-jquery-to-call-an-asmx-service-in-sharepoint-2010
    jQuery-ui Treeview
    https://plugins.jquery.com/btechcotree/
    Best Regards,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How can I automatically close a dialog box using Javascript after I click the OK button to submit it?

    How can I automatically close a dialog box using Javascript after I click the OK button to submit it? I don't want to have to X out of the dialog box after I am done.
    Thanks
    Linda

    JS can not interact with open dialogs in any way, unless it's a dialog
    created in JS using the Dialog object.
    On Thu, Jul 24, 2014 at 11:13 PM, lindaeliseruble <[email protected]>

  • How to hide a table row in pdf  using javascript?

    How to hide a table row in pdf  using javascript?

    This is only possible with LiveCycle Designer forms, not PDF forms created
    in Acrobat.

  • How can i read XML from local drive using Javascript into Live Cycle

    Hello,
    I am creating PDF Form using Acrobat LiveCycle.
    I want to write java script for load data into relative field and data present into xml file which is located at local drive
    I have write all method for parsing xml which is required ............... but i am stuck into how to read/open/load local drive xml using javascript?

    sandyrock:
    You'd better post this message to Adobe LiveCycle forum: http://www.adobeforums.com/webx/.3bbeda8d/
    You can use postMessage method in LiveCycle JavaScript to communicate with host application,the host application can be a web brower like IE.
    In IE you can use IE javascript to access local XML file.

  • How can I delete Quiz results???

    I don't know and that's what I am trying to figure out. It seems that once the results are captured by Quiz Results Analyzer, it's not easy to remove them. Sounds like they are in some database somewhere. I can UNINSTALL the Captivate Quiz Results Analyzer, remove the the XML results files, and remove the Captivate Results Directory. Re-install Captivate Quiz Results analyzer and the Quiz results come right up without doing anything else. It has to be stored on the server somewhere.
    Please someone must know the answer to this puzzle.

    Bonjour,
    Just in case if you need it in the future. The results are store from your server to your computer. Even if you delete them at your server, they are still on your local disk. Il you want to delete results, you could find them at :
    C→ user→AppData→ Roaming→QuizResultsAnalyzer→ Local Store→ CaptivateResults-your server→ your organization→your department→ your course
    Then delete what you want in this file

  • How do you save quiz results to desktop?

    Hi,
    Thank you for reading. I really need help with this situation as I have searched high and low for the answer for weeeks now!
    I need a way of saving the quiz results locally to an examiners laptop that the student is taking the quiz on. The reason for this is because the laptop will have no internet connection at all. They will be sitting the quiz on a local html file stored on the desktop of this laptop. I need a way (with or without scorm reprting) to get the results saved locally on that machine. I really do not mind how this is done as long as we can just save the results of each student somewhere locally on that machine. As I said we don't mind if its not scorm complient, even an automatic screenshot would do.
    Thanks in advance
    Danny

    Why don't you just set up a local web server and database environment on the examiner's PC and install Moodle so that you can run it locally and have the user do the course modules logged in as a user?
    Setting up a XAMPP or WAMP server environment is easy.  You can download a self installing executable that will have you up and running with an Apache web server, PHP, and MySQL in no time.  Installing Moodle is also quite straightforward.
    Then you can just output your Captivate course as a SCORM 1.2 course and upload it onto the Moodle server.  User's log in as users to take the course.  The Examiner logs in as an Admin to view results.

  • How do I know if my iphone 6 uses a MLC or TLC drive?

    I would like to know if my iphone 6 uses either a MLC or TLC drive.
    I am using iphone 6 64gb gold.
    Is there any way to check?

    Here's how you can check your phone is TLC or MLC, install "IOKitBrowser" from here: (no jailbreak required so this doesn't against the apple's rule).
    http://www.pgyer.com/IOKitBrowser
    after install search for "device characteristics", and keep tapping the result until you see something like this:
    Look for "default bits per cell", 2 means you got a MLC phone and you are fine, 3 means you got a TLC phone so you may probably experience some random reboot problem and keyboard missing etc issues. That really depends, according to my test, I have the random reboot problem when I used around 50% (around 600+ apps) of 128Gb (on two iPhone 6+s), and have keyboard issue, missing character issues and bunch of issues after I installed around 800+ apps. (10-20Gb left and crashes on both two 6+). I can say it's a very general issues since I only got two TLC phone, and haven't tested MLC iPhones yet, but it is possible that all the TLC have this risk till you install some amount of apps or used some amount of storage.
    Re: iphone 6 automatically restarting?

Maybe you are looking for

  • My iphone is connected to wireless but itunes and appstore doesnt work. Safari doesnt open websites?

    My WiFi is connected to my iphone 5s but if I will open the appstore,itunes etc they say 'cannot connect to app store'. And if I open Safari, there is no 'server'. I restart my iphone but nothing changes. Please help me. Thank You. (Excuse me for my

  • Imac g4 keyboard on new imac 24"?

    Can I use the wired keyboard from my imac 17 g4 on the new imac 24" alum? I love the feel of the old keyboard and was wondering if I could just plug it in? Both are usb and should work....?? Thanks in advance Rich

  • Auth Objects in ABAP Programs

    Dear All, how could I find the auth object being validated in programs? Using SU24 I am able to find transactions checking auth object...but I am not quit sure sure if there are some other programs using/checking those auth objects. In general I want

  • Pro 2.0... timeline display issues. - not refeshing

    When I make changes, the timeline doesn't look any different until I scroll the window a little. Such as when I place a clip in the timeline, it often only shows a smaller half-drawn version of what you'd expect until I scroll a little.. and if I del

  • Adding an extra page

    Hi All, i am new to Adobe Designer and to this forum hoping somebody has a solution for this , i am currently designing a form which is dynamic in nature, as i said the form is dynamic in nature,it could go on to print n no of pages. Now the issue is