10-29-2020
06:56 AM
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
10-29-2020
06:56 AM
@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