I'm working on a game written using haxeflixel and, on mac, whenever you hold down certain keys (A, for instance) a menu pops up at the top of the game window.
Is there any way to disable this menu inside my application only?
I'm working on a game written using haxeflixel and, on mac, whenever you hold down certain keys (A, for instance) a menu pops up at the top of the game window.
Is there any way to disable this menu inside my application only?
According to this OpenFL issue, OpenFL Next doesn't have this problem. There's two ways to enable Next:
-Dnext
when compiling on the command line.<set name="next" />
to your Project.xml
. Note that this line has to come before <haxelib name="flixel" />
.