• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

How to Make a Text Input Box

S

SebtheDev()

Guest

GM Version.
GameMaker Studio 2 + GameMaker Studio v1.9
Target Platform. All
Download.
GameMaker 1.x Project: https://goo.gl/A7VDmH
GameMaker 2 Project: https://goo.gl/cJxLZZ

Summary: This tutorial explains how to make a text input box.

Tutorial:

Here is the video tutorial, please subscribe and comment below for more content!


Thanks, SebtheDev
 
Last edited by a moderator:
Y

Yonokid

Guest
does delete_timer ++; work in GM 7.5?
 
Last edited by a moderator:
Y

Yonokid

Guest
I'm getting this error:

___________________________________________
FATAL ERROR in
action number 1
of Step Event
for object obj_prog:

COMPILATION ERROR in code action.
Error in code at line 19:
delete_timer ++;

at position 15: Assignment operator expected.

Is there any way to fix this?

Plus can I set coordinates for the text and make it go to the next line when it reaches certain coordinates?
 
Last edited by a moderator:
T

teewurst

Guest
I'm getting this error:

___________________________________________
FATAL ERROR in
action number 1
of Step Event
for object obj_prog:

COMPILATION ERROR in code action.
Error in code at line 19:
delete_timer ++;

at position 15: Assignment operator expected.

Is there any way to fix this?

Plus can I set coordinates for the text and make it go to the next line when it reaches certain coordinates?
Replace ...
Code:
delete_timer ++;
... with ...
Code:
delete_timer = delete_timer + 1;
 
U

Uberpink

Guest
is it possible to lets say have a list of words thats not shown ingame, and if you write one of the words and pressing enter etc something happens and if not writing one of the words in the list but something else ,just a beep and field is cleared again?

BTW: on a smartphone, will the alphabet automatically pop up? or is it a way to call it up so u can write?
 
Top