- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
"^C^C^C(setq BLK "ANC/592P411");SYM;INS-ANC "
All those ^Cs are Cancels (in case another command is in progress when the macro is invoked).
The first part (inside parens) is just some LISP code to set a variable named "BLK" to a specific value which will be used later, probably by the last "command" ("INS-ANC"). This might be part of a path or path+filename.
The semi-colons are like hitting the Enter key.
"SYM" might be a shortcut for the "SYMBOL" command. You can try entering it on the command line to see what it does, but this might not tell you much as it's possible the macro creator set things up assuming there is a re-defined version of SYM.
"INS-ANC" appears to be a custom function (probably also LISP) that maybe takes the value of the BLK variable as an argument (probably a block path+filename).
The fact that these custom functions are used in the macro just like commands means that there is an assumption that the functions are already loaded. If not, AutoCAD issues an "unknown command" message (as you know).
The "ANC/592P411" (in this case, or other strings in other macros) is the only thing that you might be able to use to hunt for missing resources, assuming that there is a drawing file somewhere "out there" with that name or containing a block with that name.