PDA

View Full Version : Prevent AutoCAD Text Window from opening


PRSMAIL
2007-06-11, 01:51 PM
I'm using 2002 and I have old lisp routines. this particular problem comes up when I use the custom dim commands.
for example:

(DEFUN C:DH()
(COMMAND "DIMSTYLE" "RESTORE" "DIM" "LAYER" "SET" "DIM" "" "DIM" "HOR" PAUSE PAUSE PAUSE "" "EXIT"))

The text window then opens. How do I bypass text window?
Thanks - perplexed

Avatart
2007-06-11, 02:32 PM
I'm using 2002 and I have old lisp routines. this particular problem comes up when I use the custom dim commands.
for example:

(DEFUN C:DH()
(COMMAND "DIMSTYLE" "RESTORE" "DIM" "LAYER" "SET" "DIM" "" "DIM" "HOR" PAUSE PAUSE PAUSE "" "EXIT"))

The text window then opens. How do I bypass text window?
Thanks - perplexed"GRAPHSCR" will turn off the text window, theroutine should run fine with the text window there though.

(Welcome to AUGI by the way!)