Forum Discussion
Text Entry/Project Views
- 3 months ago
Hello,
Given that you have only 1 input field on the slide 4. You don't need to be too stiff about the monitor part. You don't need anything more than:
var player = GetPlayer();
var TractorNumVerify = player.GetVar("TractorNumVerify");
TractorNumVerify += "0";
player.SetVar("TractorNumVerify", TractorNumVerify);Originally, on page 4, You were still monitoring input fields from the page 1. Of course, you will need to manually set focus to the input field by clicking there first, before you can enter anything.
Hello,
Given that you have only 1 input field on the slide 4. You don't need to be too stiff about the monitor part. You don't need anything more than:
var player = GetPlayer();
var TractorNumVerify = player.GetVar("TractorNumVerify");
TractorNumVerify += "0";
player.SetVar("TractorNumVerify", TractorNumVerify);
Originally, on page 4, You were still monitoring input fields from the page 1. Of course, you will need to manually set focus to the input field by clicking there first, before you can enter anything.