For my tests, i need to access all entries of a menu at my application.
Whenever a menu entry should be clicked or moved to, the mouse moves to the entry in a diagonal way. It starts its way by default at the center of a control.
Is there a possibility to set the order of direction, to make the mouse moving first down and then right (First example)? Or make the mouse moving first right and then down (Second example)?
First example:
[Menu][Menu][Menu] <= MenuBar
[Verylongmenuentry]
Moving to [Verylongmenuentry] causes a selection of a wrong menu, because the mouse "touches" the red [Menu] and opens it. To avoid this, a moving order (down, right) should be configurated.
Second example:
[Menu]
[Menuentry]
[Submenu] => [Submenuentry1]
[Menuentry] _[Submenuentry2]
[Menuentry] _[Submenuentry3]
[Menuentry] _[Submenuentry4]
Moving to [Submenuentry4] causes a selection of a wrong menuentry, because the mouse "touches" the red [Menuentry] and closes the opend [Submenu]. To avoid this the moving order should be right and then down.