"Great customer service. The folks at Novedge were super helpful in navigating a somewhat complicated order including software upgrades and serial numbers in various stages of inactivity. They were friendly and helpful throughout the process.."
Ruben Ruckmark
"Quick & very helpful. We have been using Novedge for years and are very happy with their quick service when we need to make a purchase and excellent support resolving any issues."
Will Woodson
"Scott is the best. He reminds me about subscriptions dates, guides me in the correct direction for updates. He always responds promptly to me. He is literally the reason I continue to work with Novedge and will do so in the future."
Edward Mchugh
"Calvin Lok is “the man”. After my purchase of Sketchup 2021, he called me and provided step-by-step instructions to ease me through difficulties I was having with the setup of my new software."
Mike Borzage
April 06, 2026 2 min read

Automate repetitive Rhino tasks with RhinoScriptSyntax, the Python helper library built into Rhino for fast, reliable scripting.
Why use RhinoScriptSyntax:
Getting started quickly:
Starter pattern for robust scripts:
Example: Batch-rename and relayer selected objects. Fast, safe, and version-friendly (works in IronPython and CPython).
import rhinoscriptsyntax as rs
def main():
objs = rs.GetObjects("Select objects to rename", preselect=True)
if not objs: return
base = rs.GetString("Base name", "Part")
if base is None: return
digits = rs.GetInteger("Digits (padding)", 3, 1, 8)
if digits is None: return
layer = rs.GetString("Target layer", "Parts")
if layer is None: return
if not rs.IsLayer(layer):
rs.AddLayer(layer, color=(255, 200, 0))
rs.EnableRedraw(False)
try:
for i, obj in enumerate(objs, 1):
name = "%s_%0*d" % (base, digits, i)
rs.ObjectName(obj, name)
rs.ObjectLayer(obj, layer)
finally:
rs.EnableRedraw(True)
rs.SelectObjects(objs)
print("Renamed %d objects to layer '%s'." % (len(objs), layer))
if __name__ == "__main__":
main()
Button/alias macro:
_-RunPythonScript "C:\Scripts\BatchRenameRelayer.py"
Practical tips you’ll use every day:
Next steps:
Tip: Save often, test scripts on copies, and wrap your first line of automation around your most boring five-minute task—then iterate.
You can find all the Rhino products on the NOVEDGE web site at this page.

June 14, 2026 2 min read
Read MoreSign up to get the latest on sales, new releases and more …