J
Jajabinx
Guest
Im trying to link a button to a dynamic text field. E.g. if i press the button, the letter 'q' shows on the text field. My code is the following:
on (release){
entrypoint.text = 'q';
}
This works!!! but when pressing the button again, the text field doesn't add another 'q'. In other words, my code is limited to once character.
So then, can anyone help me on how to add as many 'q's' to the text field, by clicking on the button?
on (release){
entrypoint.text = 'q';
}
This works!!! but when pressing the button again, the text field doesn't add another 'q'. In other words, my code is limited to once character.
So then, can anyone help me on how to add as many 'q's' to the text field, by clicking on the button?