mark.warren
2019-11-19 11:06:43

In a big-bang that has been set to 'fullscreen, how can you automatically close or reset the window to normal when it ends?


mark.warren
2019-11-19 15:49:27

Also is there any way in a big-bang to detect which mouse button has been pressed? Or to get mouse wheel events?


m.gregg
2019-11-19 16:13:39

@m.gregg has joined the channel


samdphillips
2019-11-20 01:19:00

@mark.warren the mouse wheel events show up as key events. You should be able to handle them with “mouse-up” “mouse-down” key events in an on-key handler.


mark.warren
2019-11-20 07:38:41

@samdphillips Thanks, that’s good.