home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Inside Multimedia 1995 August
/
IMM0895.ISO01.iso
/
magazin
/
optix
/
disk1
/
optxppac.set
/
WAITMOUS.INC
< prev
next >
Wrap
Text File
|
1995-05-02
|
389b
|
23 lines
procedure waitmouse
locals(x,y,k,flag)
rem *** wartet darauf, daß die Maus bewegt, eine Maustaste
rem *** oder eine Keyboard-Taste gedrückt wird.
x:=mousex
y:=mousey
k:=mousek
repeat
flag:=1
if mousex=x
if mousey=y
if mousek=k
if keypressed=0
flag:=0
endif
endif
endif
endif
until flag=1
return