Does anyone have experience with changing the look of the cursor via scripting? (Python + RhinoCommon). For now I am interested in the Rhino built-in types like the zoom/pan/rotate view navigation symbols that replace the arrow cursor on view navigation, or a crosshair when drawing…
I figured out how to do it using System cursors; would it be possible to use the cursors available in Rhino in a similar way?
from System.Windows.Forms import Cursor, Cursors
import rhinoscriptsyntax as rs
# Turn on the waiting or busy cursor symbol
Cursor.Current = Cursors.WaitCursor
rs.Sleep(1000)
# Turn on the waiting or busy cursor symbol
Cursor.Current = Cursors.Hand
rs.Sleep(1000)
# reset cursor
Cursor.Current = Cursors.Default