Alternative Question feedback

Ok the first thing we are going to do is publish the course with these test settings:"Show test Results to student after end of test" - Checked"Grade the test" - Checked"Show only the score of the test, not hte questions and answers" - UncheckedNote: from here on this is only a theory and may break the course and may not work at all. In the HTML folder open up trivantis-titlemgr.js with your favorite text editor.Search for this string: "TTPr.CreateTextResults"This is the function that creates the text ResultsScroll down to this section: if( this.bShowScOnly == 0 ) { for( idx = 0; idx < this.arRTPages.length; idx++ ) qNum = this.arRTPages[idx].createTextResults( txtRes, qNum, this.bAutoG ); }Change the qNum line to: qNum = this.arRTPages[idx].createTextResults( txtRes, qNum, null); This will make it so it doesn't show any of the correct answers when you get it incorrect. It will still show when you are correct.You need to play around with this function to manipulate the results as you want them. Search for this term "arRTPages" and you get a whole bunch of information on what this array contains, and then manipulate the results based on this array.

Discussions have been disabled for this post