Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
//start off with a null var
var lastKey = null
//when a key is pressed... (in this example, the spacebar)
//note: "key value" is just psuedo code
if (keyPress(keyDown(SPACE))) {
//if new key value is NOT equal to the last key value
//(if this is a space and the last input isnt a space...
//then display the input)
if ("key value" != lastKey) {
sometext.text = "key value";
lastKey = "key value";
}
//otherwise do nothing
}