'k is for the keyboard
'active is a return code for which menu we got the result from, in case someone makes multiple menus
' with the same options listed in the sub menus, such as PAINT -- Circle as one menu/submenu
' and then DRAW -- Circle as another menu/submenu.
' Both would just return "Circle" as our final choice, so we'd need to know which menu was active
' and where the command came from.
STATIC oldmouse
AS INTEGER 'the old status of our left mouse button (up or down) IF mb
= 0 THEN resetmb
= -1: mb
= _MOUSEBUTTON(1) 'shortcut key so I don't have to type _mousebutton(1) multiple times.