My Results

It seems the My Results page has improved a lot visually since I last looked. Is it possible to output users results somewhere?

I have been trying, with the help of ai, to create a javascript code which detects when an exercise (specifically 'drag the words') is completed successfully. I have not found a way yet. The idea is to 'hide' the 'continue' button in my lms course and then show it only when the exercise is completed successfully.

Anybody have any experience or ideas on this?

otacke's picture

  1. Listen for xAPI statements,
  2. Check the statements for a "results" property and determine success
  3. Send a signal to your LMS, e.g. via postMessage or AJAX or whatever suits your use case
  4. Toggle the continue button as needed.

Thanks, I will update my prompt accordingly.