At the moment it seems that the toggle for Crosshair is only found in Pref. > Adv. which make it unpracticed to toggle.
Wouldn’t a dedicated toggle command, or a way to create a Macro be more user friendly and practical?
Sorry I don’t use mac but here is a Vbscript I wrote and have on an icon that does something similar maybe someone can cast it into python format so it will work in Mac.
-RunScript (
Sub setCrossHairs
Dim arrNames(1),setting
arrNames(0) = "yes"
arrNames(1) = "no"
setting = Rhino.GetString("Set Cross Hairs?",, arrNames)
If setting = arrNames(0)Then '"yes" Then
Rhino.AppearanceDisplay 6, True
Else
If setting = arrNames(1)Then '"no" Then
Rhino.AppearanceDisplay 6, False
End If
End If
End Sub
setCrossHairs
)