Hi…,
again a customer wish. The copy command should select the copies, and not the original object, after it is finished
Could a script fix this?
Thanks
Michael
www.flexiCAD.com
Hi…,
again a customer wish. The copy command should select the copies, and not the original object, after it is finished
Could a script fix this?
Thanks
Michael
www.flexiCAD.com
Hi Michael -
_SelNone _SelLast
After the copy operation will help, but yes, a script can help as well. I’ll take a look.
This on a button:
! _-Runscript (
Rhino.Command("_Copy")
if Rhino.LastCommandResult() = 0 then
Rhino.UnselectAllObjects()
Rhino.SelectObjects (Rhino.LastCreatedObjects())
End if
)
Should work…
-Pascal