Jump to content

Recommended Posts

Posted

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 :)

Posted

Wouldnt that be something like this?

 

(defun C:TEST ( / )
(command "DIMLINEAR" PAUSE PAUSE PAUSE)
(command "AIDIMTEXTMOVE" "1" (entlast) "")
(princ)
)

Posted

Dang that was fast and it works just as I hoped it would, thank you nice work!

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...