Forum Discussion
StefanieKirs743
3 months agoCommunity Member
Text Entry/Project Views
Hi Heroes! I am working on a project that calls for the user to enter in information using keypads. Everything's set up and the keypads work, but the problem is that the user has to enter the same n...
- 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.
StefanieKirs743
3 months agoCommunity Member
Thanks Jesse!