Hi , im creating a little game called circle casino
well im just in the intro screen now .
ive created a bunch of circles poping up on the screen and put
the title using text command . what i want to do now is put a
PRESS ANY KEY text , and i want it to flicker like 1 sec u see it
and 1 sec u dont , ive put it in a loop but i dont know how to delete the text from the screen at the end of the loop ,
I hope that u can understand what is my prob . sorry for any bad ENG
Here is the code so far
REMSTART
Title : Circle Casino
Author : Shlomi Nahari
Date : 2.17.2006
REMEND
REM INTRO
CLS
SET TEXT FONT "MS Dialog Light"
SET TEXT SIZE 45
CENTER TEXT 320,350,"Circle Casino Version 0.1"
SET TEXT SIZE 25
CENTER TEXT 320,335,"Reality Studio Present"
DO
circles_intro(RND(630),RND(300),RND(20))
counter = counter + 1
IF counter = 500 THEN EXIT
LOOP
REM PRESSKEY LOOP
DO
presskey$ = "PRESS ANY KEY"
SET TEXT SIZE 30
INK RGB (255,255,255),0
CENTER TEXT 320,430,presskey$
REM HERE I WANT TO DELETE THE TEXT ...
SLEEP 5000
LOOP
WAIT KEY
FUNCTION circles_intro(X,Y,Z)
color = RGB(RND(255),RND(255),RND(255))
INK color,0
CIRCLE X,Y,Z
ENDFUNCTION