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.
How many people did it legitimately vs turning their mouse sideways and button mashed it?
(on first frame)
var clicked = 0;
myCounter.text = "0";
clickMe.onPress = function(){
clicked = clicked + 1;
myCounter.text = clicked;
}
(on last frame)
stop();
myCounter.text = clicked;