How do i get the window to stay on top when you press 1 and then not stay on top when you press 2.
Window stay on top
Started by 1bodger, Sep 03 2012 07:39 PM
2 replies to this topic
#1
Posted 03 September 2012 - 07:39 PM
#2
Posted 03 September 2012 - 07:59 PM
window_set_stayontop(stay) Sets whether the window must always stay on top of other windows (stay can be true or false)
#3
Posted 03 September 2012 - 08:00 PM
How do i get the window to stay on top when you press 1 and then not stay on top when you press 2.
Put this in a step event somewhere
if keyboard_check(ord("1")) {window_set_stayontop(1)}
if keyboard_check(ord("2")) {window_set_stayontop(0)}
Edited by jpaugh78, 03 September 2012 - 08:01 PM.
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users











