Answered
Button + text field script
- July 13, 2020
- 2 replies
- 1214 views
Hi, can someone pls make me script that I need or atleast give me some advice how to achive what I need cuz i'm new to this thx in advance.I explained everything in pdf file.
- Step 1: Create a (hidden, if you wish) text field called "Counter".
- Step 2: Apply the following code as the MouseUp event of the button field:
var counter = Number(this.getField("Counter").valueAsString);
if (counter<7) this.getField("Counter").value = counter+1;
- Step 3: Apply the following code as the custom Calculation script of "Text2":
event.value = Number(this.getField("Counter").valueAsString) + "/7 points used";
- Step 4: Apply the following code as the custom Calculation script of "Text3":
event.value = Number(this.getField("Counter").valueAsString)*20;
That's all there is to it.
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.