2

How can I run multiple commands using one shortcut?

I'm gonna run dupfaceborder, offsetcrvonsrf, split, extrudesrf by specified distances like 50 times, is it possible to convert them into one command? I read about it and know it's possible using python, but I'm not able to do that so I need another easier way.

Grzegorz Smulko
  • 2,525
  • 1
  • 29
  • 42
jen_sfz
  • 23
  • 4
  • In this link macro basics are explained: https://wiki.mcneel.com/rhino/basicmacros?s[]=macro&s[]=basic This is a part of it: You can create macros... The tools you need Your brain :P The Rhino Help file - lists all Rhino commands and their sub-options. This is your most important reference. Pressing F1 (Windows) or the :?: toolbar button (Mac) will get you to the online help. The Rhino MacroEditor, a built-in interface for creating and testing your macros. An understanding of how to add your macros to your workflow in the form of aliases or toolbar buttons (explained here) – jen_sfz Sep 23 '19 at 18:08

1 Answers1

0

I think you are probably looking for macros. You can chain commands together and then attach to buttons. Check out the docs here: https://wiki.mcneel.com/rhino/macroscriptsetup

Tom Makin
  • 3,203
  • 23
  • 23
  • Please consider adding at least a part of the answer from the link to your answer here since link only answers will become invalid if the target url changes over time. Right now what you have provided is more of a comment than an answer. – yukashima huksay Sep 23 '19 at 16:37