Post Reply 
WAIT, PRINT and timeout
07-18-2015, 12:32 PM
Post: #3
RE: WAIT, PRINT and timeout
Salvo,

This seems to do everything you need:

Code:

EXPORT eraseme()
BEGIN
 A:=−1;
 PRINT();
 PRINT(1);
 WHILE A<0 DO
  A:=WAIT();
  IF TYPE(A)==DOM_INT THEN ELSE BREAK;END;
 END;
 PRINT();
 PRINT(2);
END;

It waits for a screen tap or key hit then continues. The problem is that the screen dims after about 10 seconds. Do you know of a way to set that to a longer time?

Road
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
WAIT, PRINT and timeout - salvomic - 07-18-2015, 11:22 AM
RE: WAIT, PRINT and timeout - Thomas_Sch - 07-18-2015, 11:35 AM
RE: WAIT, PRINT and timeout - roadrunner - 07-18-2015 12:32 PM
RE: WAIT, PRINT and timeout - roadrunner - 07-18-2015, 12:33 PM
RE: WAIT, PRINT and timeout - salvomic - 07-18-2015, 12:44 PM
RE: WAIT, PRINT and timeout - roadrunner - 07-18-2015, 04:08 PM
RE: WAIT, PRINT and timeout - salvomic - 07-18-2015, 04:48 PM
RE: WAIT, PRINT and timeout - roadrunner - 07-19-2015, 12:09 PM
RE: WAIT, PRINT and timeout - salvomic - 07-19-2015, 03:35 PM
RE: WAIT, PRINT and timeout - StephenG1CMZ - 07-18-2015, 07:14 PM
RE: WAIT, PRINT and timeout - salvomic - 07-18-2015, 07:32 PM
RE: WAIT, PRINT and timeout - StephenG1CMZ - 07-18-2015, 09:10 PM
RE: WAIT, PRINT and timeout - roadrunner - 07-18-2015, 08:09 PM



User(s) browsing this thread: 1 Guest(s)