-
-
Notifications
You must be signed in to change notification settings - Fork 18
window_get_x
drewmccluskey edited this page Feb 12, 2019
·
7 revisions
Returns X position of window
window_get_x();
Returns: int
Return the X position (left side window position) of the current window.
int win_x = window_get_x();
show_debug_message(win_x.ToString());
The above code will set int
win_x to the current x position of the window.
Back to window-functions