Author Topic: Can you suppress this message?  (Read 1538 times)

0 Members and 1 Guest are viewing this topic.

FengK

  • Guest
Can you suppress this message?
« on: April 24, 2008, 01:17:20 PM »
When opening a dynamic block definition drawing, you get a message as shown in the image below. Can you suppress it? I think I can use AutoIt (http://www.autoitscript.com/autoit3/) to detect the pop up window and send a "N" key to it. But I'd like to know if this can be addressed just inside AutoCAD. Thanks.

quamper

  • Guest
Re: Can you suppress this message?
« Reply #1 on: April 24, 2008, 01:35:32 PM »
If sdi is set to 1 you won't get that message. But that probably doesn't really help you.

FengK

  • Guest
Re: Can you suppress this message?
« Reply #2 on: April 24, 2008, 06:55:29 PM »
I guess I'll just use AutoIt then. It is quite easy:

while 1
   WinWaitActive("AutoCAD", "Open in Block Editor?")
   Send("N")
WEnd

Have this code running, and start batch processing of drawings...