Print Results Print-Out Page in Storyline 3

Nov 09, 2017

I am working in Storyline 3.  On the print results print-out page, I do not want the #, Question, Correct Answer, Student Answer, Result, and Points Awarded information to appear.  (Example: In the attached screenshot, I need to remove everything below the highlighted line.)  How can I remove the information from the page?  I have read posts about doing HTML coding in the reports file in the published course.  However, I do not know HTML coding and I am looking for specific steps on what I need to do to remove the info from the print-out.  I will also need to know the steps to take to get the updated report (with the removed info) into the published course. 

 

6 Replies
Russell Killips

Hello Joey,

I was able to do this. I added one line of code in the report.html file to the function displayQuizResults()

Here is the function before my edit.

function displayQuizResults() {
    for (var i = 0; i < quizOrder.length; i++) {
      var quizId = quizOrder[i];
      displayQuizResult(quizId);
    }
};

Here is the function with  my edit.

function displayQuizResults() {
    quizOrder.length = 0;
    for (var i = 0; i < quizOrder.length; i++) {
      var quizId = quizOrder[i];
      displayQuizResult(quizId);
    }
};

I have attached a report.html file with the edit for you to take a look at.

Joey Orsinger

Hi Russell,

Thanks for the information!  I added the line of coding to the report html file that you suggested.  However, now the Print Results page is completely blank - nothing is displaying on the page.  I need to have the top portion of the print results page display.  In my original document that attached to my question , I need to have the information above the highlighted line display on the page (course name, student name, date/time, student score, passing score, and result.)  Everything else (Question, Correct Answer, Student Answer, Result, Points Awarded) needs to be removed from the page.  We don't want students to print the page out and pass it around to other students to give them the answers to the test. 

Any other suggestions on how to accomplish this? 

Russell Killips

Sorry, I'm not sure why it isn't working for you.

2 things that I can think of:

1. When I try to view a report locally it usually comes up blank. After uploading it, then it works.

2. I'm using Storyline 360 and not Storyline 3. So the report may work differently between the two.

Here's a screen shot of it working for me.

Report

This discussion is closed. You can start a new discussion or contact Articulate Support.