Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
AutoCAD - ATTDIA - Insert dialogue box still shows up?
The ATTDIA command will supposedly remove the dialogue box when I use the Insert command. I set it to 0, I still get the dialogue box.
-insert and -i will not display a dialogue box (like I want) no matter what ATTDIA is set to. However, I need it to be that no box comes up when I type "Insert"
Please help!
1 Answer
- 1 decade agoFavorite Answer
I have no idea why you cant just type "-insert", anyways add the following code to your ACAD.LSP file, if that file doesn't exist, create it in your autocad/support directory.
(COMMAND "UNDEFINE" "INSERT")
(DEFUN C:INSERT ()
(COMMAND "-INSERT")(PRINC)
)
Or a slightly easier method would be to open your ACAD.PGP file in your support directory and add this line
INSERT, *-INSERT
That should work