Attempt limit and submit state

Problem:

In the attached slide, even though I have attempts set to 3 for all the text entries, it still seems to allow unlimited attempts.

Also I’d like to figure out how to get the Submit button to be disabled until something has been entered in all the fields. I can set it to disabled state on load, but then I can’t figure out how to have it change state to Normal when all fields are filled.

ActivePresenter version: 9

OS: Win
SubnetWorksheet1.approj (2.2 MB)
11

Notes:

Hi Roger,

Here are our instructions on how to do achieve what you want:

In the attached slide, even though I have attempts set to 3 for all the text entries, it still seems to allow unlimited attempts.

Please add the following javascript to the Text Entry’s On Correct and On Incorrect event:

prez.object("Text Entry_1-1-1").maxAttempts(3);

For the Submit button:
Add JavaScript to the project’s On Load event. (ActivePresenter > Project > Properties > navigate to the Interactivity tab).
For the Text Entry’s On Rollover and On Rollout events, include the following JavaScript to call a function within the project:
prez.checkDisableButton();

Please take a look at this project for more details:
SubnetWorksheet1.approj (2.2 MB)

Hope this helps!
Regards,