15 lines
284 B
Text
15 lines
284 B
Text
|
|
#cursorSize = 10 ;use a full sized cursor
|
||
|
|
|
||
|
|
If OpenConsole()
|
||
|
|
Print("Press any key to toggle cursor: ")
|
||
|
|
EnableGraphicalConsole(1)
|
||
|
|
height = #cursorSize
|
||
|
|
ConsoleCursor(height)
|
||
|
|
Repeat
|
||
|
|
If Inkey()
|
||
|
|
height ! #cursorSize
|
||
|
|
ConsoleCursor(height)
|
||
|
|
EndIf
|
||
|
|
ForEver
|
||
|
|
EndIf
|