We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems that input or keypresses are ignored when using $CONSOLE:ONLY in OSX and Linux.
$CONSOLE:ONLY
$CONSOLE:ONLY PRINT "Sleep?" SLEEP
Prints "Sleep?" then just hangs, and echos the keys I'm hitting forever.
$CONSOLE:ONLY INPUT "Input"; I$
Works as intended.
$CONSOLE:ONLY PRINT "Inkey?" DO: K$ = INKEY$: LOOP WHILE K$ = ""
Prints "Inkey?" then just hangs, and echos the keys i'm hitting forever.
This works however:
_CONSOLE ON _DEST CONSOLE _SOURCE CONSOLE PRINT "foo" DO: K$ = INKEY$: LOOP WHILE K$ = ""
But it still shows a window, not just only the console output...
Additionally this also is ignoring input on OSX (tried this as a work-around):
' Setup the console $CONSOLE $SCREENHIDE _CONSOLE ON _DEST _CONSOLE _SOURCE _CONSOLE
The issue seems related to $SCREENHIDE as when that is not in use it works fine.
$SCREENHIDE
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It seems that input or keypresses are ignored when using
$CONSOLE:ONLY
in OSX and Linux.Prints "Sleep?" then just hangs, and echos the keys I'm hitting forever.
Works as intended.
Prints "Inkey?" then just hangs, and echos the keys i'm hitting forever.
This works however:
But it still shows a window, not just only the console output...
Additionally this also is ignoring input on OSX (tried this as a work-around):
The issue seems related to
$SCREENHIDE
as when that is not in use it works fine.The text was updated successfully, but these errors were encountered: