Using Move and Offset in a macro

Hi, I have no scripting knowledge so I’m trying to make macros in rhino to help speed me up in some areas at work. When using offset with the mouse you can just click on the side you want the offset to happen, but how do I tell the macro with side of the line I want it to offset. Same situation with the move command how to i tell the macro with direction to move in.

Hi Thomas - For Move, you can always set the From point at 0,0,0 and then use relative coordinates in your macro

! _Move _Pause 0,0,0 r5,3,8

Offsetting may be pretty hard without scripting.

-Pascal