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;

};