Silly me, is there a way to have this toggled on/of via a keyboard shortcut?
what would be the macro text i need to put in?
display mode option is ok, still would be = curser to position+click+click to select.
keyboard shortcut would be a left hand quick toggle
true. in this case you’d better make it a macro once you’ve created your view.
I think something like:
'_SetDisplayMode _Viewport=_Active _Mode=_myOwnViewportMode
Try adding “Enter” to the end of your macro.
You can put this macro on an Alias or Keyboard shortcut to toggle SubD Wires in current display mode (all in one line):
SetRedrawOff -_RunScript (Call Rhino.ViewDisplayModeProperty(Rhino.ViewDisplayModeEx(), "Objects\SubD\SmoothVisible", Not Rhino.ViewDisplayModeProperty(Rhino.ViewDisplayModeEx(), "Objects\SubD\SmoothVisible")) ) SetRedrawOn
If you need to add the other two, maybe you can figure it out based on the info it this topic:
Hotkey setup for SubD wires toggle - Rhino / Rhino for Windows - McNeel Forum
THIS WORKED ![]()
Cntl+T=
SetRedrawOff -_RunScript (Call Rhino.ViewDisplayModeProperty(Rhino.ViewDisplayModeEx(), “Objects\SubD\SmoothVisible”, Not Rhino.ViewDisplayModeProperty(Rhino.ViewDisplayModeEx(), “Objects\SubD\SmoothVisible”)) ) SetRedrawOn
My guess is that the _ was too much in _SubD_WiresOff as your Mode was called SubD_WiresOff
Just to complete my answer…
nice one from Jarek ![]()




