View all by Summer_Video_games
Creator
Follow Summer_Video_games
Follow
Following Summer_Video_games
Following
Add To Collection
Collection
Comments
Car Cone Game
Run game
More information
Status
Released
Platforms
HTML5
Author
Summer_Video_games
Made with
Construct
Comments
Log in with itch.io
to leave a comment.
Robodog646
1 year ago
movie.color = "cyan";
var my_text = text("What is your name?");
my_text.color = "green";
my_text.font = "Comic Sans MS";
my_text.size = 30
my_text.y = 30;
var nameinput = textInput(0, 70);
var my_text1 = text("What is your address?");
my_text1.color = "green";
my_text1.font = "Comic Sans MS";
my_text1.size = 30;
my_text1.y = 120;
var addressinput = textInput(0, 160);
var smile = graphic("th-removebg-preview.png");
smile.x = 340;
smile.y = 180;
smile.scale = 0.6
var my_text2 = text("What is your age?");
my_text2.font = "Comic Sans MS";
my_text2.color = "green";
my_text2.size = 30;
my_text2.y = 210;
var ageinput = textInput(0, 250);
movie.whenMouseClicked = function() {
my_text.message = "That is a nice name, " + nameinput.message;
my_text1.message = "Sending Hitman at " + addressinput.message;
my_text2.message = "So your age is " + ageinput.message;
};
Comments
Log in with itch.io to leave a comment.
movie.color = "cyan";
var my_text = text("What is your name?");
my_text.color = "green";
my_text.font = "Comic Sans MS";
my_text.size = 30
my_text.y = 30;
var nameinput = textInput(0, 70);
var my_text1 = text("What is your address?");
my_text1.color = "green";
my_text1.font = "Comic Sans MS";
my_text1.size = 30;
my_text1.y = 120;
var addressinput = textInput(0, 160);
var smile = graphic("th-removebg-preview.png");
smile.x = 340;
smile.y = 180;
smile.scale = 0.6
var my_text2 = text("What is your age?");
my_text2.font = "Comic Sans MS";
my_text2.color = "green";
my_text2.size = 30;
my_text2.y = 210;
var ageinput = textInput(0, 250);
movie.whenMouseClicked = function() {
my_text.message = "That is a nice name, " + nameinput.message;
my_text1.message = "Sending Hitman at " + addressinput.message;
my_text2.message = "So your age is " + ageinput.message;
};