• Hello [name]! Thanks for joining the GMC. Before making any posts in the Tech Support forum, can we suggest you read the forum rules? These are simple guidelines that we ask you to follow so that you can get the best help possible for your issue.

Mac OSX Mac Can't Hide Cursor

A

actruncale

Guest
I am unable to hide the cursor in my Mac build. I have unchecked display cursor in the Global Settings. I've also tried window_set_cursor(cr_none)

Is anyone else having this problem? Can anyone else confirm it? Does anyone have a solution?
 
A

actruncale

Guest
I have found a work around if anyone is interested.

Put in step event.
Code:
if(os_type == os_macosx){
    if(window_has_focus()){
        if(window_get_fullscreen() || (window_mouse_get_x() > 0 and window_mouse_get_x() < window_get_width() and window_mouse_get_y() > 0 and window_mouse_get_y() < window_get_height()))
            window_set_cursor(cr_none)
    }
}
 
Top