Macro select mid point snap possible?

Hei,

is there a way, beside VBS, to select a simple osnap (e.G. “mid”) in a Macro?
for example a mid snap for a pipe macro:
_-Pipe
_Pause
_Cap=_Round
.05
.05
_Pause
>>select/snap to midpoint of curve<<
.15
_Enter

thanks in advance!

Hello - put a “Mid” in there before the Pause

.05
.05
Mid
Pause
.15

-Pascal

Hmm, thought so too, tried before and after Pause, does not work for me.(also not in WIP)

Open new Document.
Draw simple controll point curve (3clicks only)
Macro:
_-Pipe
_Pause
_Cap=_Round
.05
.05
_Mid
_Pause
.15
_Enter

Command-Line Output:
Command: _-Pipe
Command: _Pause
Start radius <0.050> ( Diameter Thick=No Cap=Round ShapeBlending=Local FitRail=No ): Cap=_Round
Start radius <0.050> ( Diameter Thick=No Cap=Round ShapeBlending=Local FitRail=No ): .05
End radius <0.050> ( Diameter ShapeBlending=Local FitRail=No ): .05
Point for next radius. Press Enter for none: _Mid
Point for next radius. Press Enter for none: _Pause

After Pause i need to click on mid-snap for the macro to finish.
"Mid" command is accepted with no error but takes no effect.

Removing the Pause leads to a straight pipe.

Hello - you do need to click on the mid point, that is not automatic -

! _-Pipe_Pause
_Cap=_Round.05
.05_Mid
_Pause.15
_Enter`

woks here.

-Pascal