Macroeditor _Pause not waiting for user input

I want to offset a curve, then select the offset curve after offset. but offset requires me to select a side, so i used pause, but it’s not waiting for my input
my macro is

_offset _Pause
_sellast

clone

on rhino 8 SR9

You need two pauses, one to select the curve and one to pick the offset side…

_Offset _Pause _Pause _SelLast

ah, 2 pause works, but that’s weird, the curve is already selected before the macro, so why does it need 2 pause

If something is preselected, it automatically skips the first Pause, but it still needs to be there…

1 Like