Inform 7 working on title screen

Is there a way to hide prompt?

1 Like

Usually people hide it by saying “wait for any key”. To do that, you need to include Basic Screen Effects by Emily Short (which comes installed by default).

So a sample game that hides the prompt on the title screen looks like this:

"Sandbox" by Mathbrush

Include Basic Screen Effects by Emily Short. 

Laboratory is a room.

When play begins:
	say "This is my title screen!";
	wait for any key;
1 Like

Thank you very much

1 Like