forked from QB64-Phoenix-Edition/QB64pe
-
Notifications
You must be signed in to change notification settings - Fork 0
_SCREENX
Samuel Gomes edited this page Nov 8, 2022
·
1 revision
The _SCREENX function returns the current column pixel coordinate of the program window on the desktop.
positionX& = _SCREENX
- Function returns the current program window's upper left corner column position on the desktop.
- Use _DESKTOPWIDTH and _DESKTOPHEIGHT to find the current Windows desktop resolution to adjust the position with _SCREENMOVE.
- Keywords currently not supported
Clicks and opens program window header menu:
_SCREENMOVE _MIDDLE
_SCREENCLICK _SCREENX + 10, _SCREENY + 10
PRINT "Hello window!"