Search the Community
Showing results for tags 'prompt'.
-
selecting objects by layer
Jamez posted a topic in AutoCAD 2D Drafting, Object Properties & Interface
Is it possible to select objects by layer using only the command prompt, I know it is possible to select objects by other means but I'm specifically trying to use the command prompt to run a script which will go on to cleanse dxf files. If not, does anyone now of a lisp routine which would enable th... -
What I will select is a 3d polyline. (defun c:coord ( / e r) (prompt "\nchoose a onject!") (setq e (entget (car (entsel)))) (setq r 1) (setq count 0) (while r (setq e (entget (entnext (cdr (car e))))) (if (/= (cdr (assoc 0 e)) "SEQEND") (progn (terpri)...
-
I have a bunch of drawings from our client that were created for construction purposes and were originally made in a Microstation 3D parametric environment so is full of blocks with embedded layers. Some layers are either not necessary for my 2D work or do not comply with our layername standard, so...
-
Hello, Is it possible to set up a project so that when a new instrument is placed the user is automatically prompted for details of the properties which complete the Instrument List Report? Thanks for any help.
- 6 replies
-
- properties
- prompt
-
(and 3 more)
Tagged with:
-
Hi There, I seem to have lost the ability to use short-form commands in the command prompt. I was able to do it, and not I can't. I don't know what changed. For instance.... I can type in 'LINE' and the line command will initiate; However, I cannot initiate the line command by typing in 'L'....
-
hi all I work using AutoCAD 2010 i think an old drawing that i have taken over was created using cad2007, and due to the compatibility issues between them, every time I save the dwg (Ctrl+S) i get prompted/asked whether I realllly want to save the drawing in 2010 format (yes/no) It's always yes....
-
I am new to this forum and LISP programming so please bear with my lack of knowledge. I have a couple of hundred blocks which I'm interested in changing the values of specific tags using lisp (or something else). I have lots of different blocks, and they all have two attributes. The tag...
-
In the past, I've seen a lot of questions about this particular topic so I have decided to put together a short tutorial surrounding the idea of prompting a user whilst offering a default option to select. I welcome any comments or feedback about how I could make the tutorial better, and further...