Quote: "PRINT "At this point the application window stays always on top."
PRINT "Press any key to exit..."
WAIT KEY"
Oh lol I thought you wanted that to happen. That happens for me too.
The solution as i see it is to set the window to the back of the screen.
use this command, it solves it for me:
heres you program with the command:
CLS
PRINT "At this point the application window moves along the z-order normally."
PRINT "Press any key to switch to fullscreen mode..."
WAIT KEY
SET WINDOW OFF
CLS
PRINT "Press any key to switch back to window mode..."
WAIT KEY
SET WINDOW ON
WINDOW TO BACK
ClS
PRINT "At this point the application window stays always on top."
PRINT "Press any key to exit..."
WAIT KEY
My software never has bugs. It just develops random features.