Answered
Script for button
I have two buttons + and -, I want each to add or subtract 1 from "Text1" field, how can I do this?
I have two buttons + and -, I want each to add or subtract 1 from "Text1" field, how can I do this?
As 'Mouse Up' action of + button, use this:
this.getField("Text1").value += 1;
for - button change += to -=
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.