I'm making a typing game and would like to use SPACE to set a Textbox's text to "". I am able to make it work with any other key except SPACE! I have created modified versions of the Keyboard and Textbox plugins, but nothing has worked yet. Attached is a .capx with a simple demonstration. type in the top box and hit ENTER, it will do exactly what I want it to do with SPACE. Type in the lower box and hit SPACE, and it doesn't work. I have tried everything I can think of and might be losing my mind! Any help would be greatly appreciated. Thanks!
https://drive.google.com/file/d/0B_8tm0 ... sp=sharing
Develop games in your browser. Powerful, performant & highly capable.
Use TextBox2->On text changed, then Compare two values: right(TextBox2.Text,1) = " "
Thank you! This worked perfectly!!!!!