I had a similar problem (if not the same problem).
- When you do not move the mouse, but move the cursor over the button, the pen seems to flicker.
- When you move the mouse and pass the button, the pen flickers and the cursor slows down.
In summarizing the Scoox solution, I put the code in a function that fires when the book is opened.
Private Sub Workbook_Open() Application.Cursor = xlNorthwestArrow End Sub
This eliminated the flicker of the fixed mouse and the delay in moving the pointer over the button. However, if you are moving slowly on the button, there is still a slight flicker.
source share