How can i create a new botton

how can i create a new botton with two or more action like “join & close crv”

How to create macros tutorial
How to set up macros/scripts in buttons

In principle the macro should look like this:

! _Join _Pause _SelLast _CloseCrv

However Join is one of those nasty mis-programmed commands for macros, you will need one “_Pause” for each item you intend to pick. So it looks more like this:

! _Join _Pause _Pause _Pause _Pause _Pause _Pause _Pause _Pause _Pause _Pause _Pause _Pause _Pause _Pause _Pause _SelLast _CloseCrv

(use as many pauses as you might want to pick curves, more won’t hurt)

However, an easier way to do this is the following:

! _Select _Pause _Join _SelLast _CloseCrv

–Mitch

Thank you very much
:slight_smile:

Oljaito