letsgo19 Posted October 25, 2017 Posted October 25, 2017 I have some experience with lisps but I cant seem to create or find a specific one. I am trying to find a lisp that will allow me to do a linear dimension and then move dimension with leader from right to left. I basically want those 2 commands combined into 1. The names of the commands are Dimension Linear and Dimension, Text, Move with leader. The Macro for Dimlinear is ^C^C_dimlinear The Macro for Dimension, Text, Move with leader is ^C^C_aidimtextmove _1 Thanks for any help that is offered Quote
Aftertouch Posted October 25, 2017 Posted October 25, 2017 Wouldnt that be something like this? (defun C:TEST ( / ) (command "DIMLINEAR" PAUSE PAUSE PAUSE) (command "AIDIMTEXTMOVE" "1" (entlast) "") (princ) ) Quote
letsgo19 Posted October 25, 2017 Author Posted October 25, 2017 Dang that was fast and it works just as I hoped it would, thank you nice work! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.