How would you add different values to the same global variable?
Eg:
I click "button", and it adds 1 to "gVariable".
I click "button" a second time, it adds 2 to "gVariable".
I click "button" a third time, it adds 3 to "gVariable".
I click "button" a fourth time, it adds 1 to "gVariable".
Then it continues to loop by adding 1, then 2, then 3, then 1, then 2, etc...
Is this possible to do in as few events as possible? Rather than have many, many different events/functions and calling them?
Thanks in advance.