Hi Anne
here's one way you could achieve this:
1. In the language field for Multi Answer Correct add something like: You have selected all the correct answers. Click next to continue.
2. When the user clicks check the core Xerte code is calculating what feedback to display and only shows that Multi Answer Correct feedback if all the answers are correct so we can use jquery to check for that and re-enable the next button if that part of the feedback is displayed.
3. Add an optional script property to that page and add the following script:
Code:
$("#checkBtn").click(function(){
if($('p').text().indexOf('Click next to continue.') != -1){
$("#x_nextBtn").button("enable");
}
});
When the user clicks the check button the core xerte code executes and displays the multi correct feedback and then this extra script looks for that sub string e.g. "Click next to continue." and if found re-enables the next button.
There are other ways you could do this but this should suffice for what I think you are trying to achieve. Please try it and report back here for anyone else reading this thread.
HTH
Ron