Questions, advanced scripting

Hi Ledge,

If you need a custom total score, please see my answer in this thread:

If you need the “slide score”, you can use a hidden text entry object:

  1. Delete its correct, incorrect messages and actions
  2. Set it initial hidden so users don’t see it
  3. Set it score, correct value, max attempt…
  4. Call the following script when submitting the slide
if (slide_is_correct)
  prez.object('text entry name').value('text entry correct value').submit();
else
  prez.object('text entry name').value('an incorrect value').submit();

Regards