Anuncios

The Autodesk Community Forums has a new look. Read more about what's changed on the Community Announcements board.

Kent1Cooper
en respuesta a: orders3


@orders3 wrote:

....

How can I end an AutoCAD Command without having to manually hit Enter?

Example:

Would like to see a blank Command Line after the following

-linetype Set "ACAD_ISO03w100"


If that's a command macro, put a semicolon [= Enter] at the end [after either a semicolon or space to "register" the linetype name entry]:

-linetype Set "ACAD_ISO03w100" ;

 

OR, if you're not using LT, you can do it this way:

 

(setvar 'celtype "ACAD_ISO03w100")

Kent Cooper, AIA