Author Topic: _INSERT VERSUS -INSERT  (Read 1572 times)

0 Members and 1 Guest are viewing this topic.

SDETERS

  • Guest
_INSERT VERSUS -INSERT
« on: November 11, 2005, 11:51:19 AM »
I need to do away with the insert dialog box

What I have is a huge electric symbol library

Every time I try to inset a block from this library the insert dialog box pops up and the block does not insert into the drawing

Please help

Thanks


Keith™

  • Villiage Idiot
  • Seagull
  • Posts: 16899
  • Superior Stupidity at its best
Re: _INSERT VERSUS -INSERT
« Reply #1 on: November 11, 2005, 11:58:33 AM »
you must use either (command "insert") or -insert to prevent the dialog from poping up
Proud provider of opinion and arrogance since November 22, 2003 at 09:35:31 am
CadJockey Militia Field Marshal

Find me on https://parler.com @kblackie

Bob Wahr

  • Guest
Re: _INSERT VERSUS -INSERT
« Reply #2 on: November 11, 2005, 12:00:41 PM »
-insert

or

UNDEFINE INSERT
(defun c:insert()(command "-insert"))

or

(defun c:Ncert()(command "-insert"))

SDETERS

  • Guest
Re: _INSERT VERSUS -INSERT
« Reply #3 on: November 11, 2005, 12:17:40 PM »
What I did was replace all of the _insert that was in the menu file to -insert

This worked well

I really dislike that dialog box

Thanks for all the help

Andrea

  • Water Moccasin
  • Posts: 2372
Re: _INSERT VERSUS -INSERT
« Reply #4 on: November 11, 2005, 01:16:52 PM »
Keep smile...