- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
Hi Guys,
I just started this job where their drafting department refuses to update; so I'm using AutoCAD2018
they had some tool palettes for use already migrated when I came into the office. All of the tools are present in the palettes but none of them are active. Ive tried to locate source files. I can add and use tools but none of the existing tools work. (we're talking over 100 blocks here)
it kicks back an "unknown command INS-ANC"
If anyone knows what to do; if this is a Macro issue or If i need to just build a source file from scratch?
All advice greatly appreciated.
New In the Office Baby Engineer
¡Resuelto! Ir a solución.
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
Could be as simple as a pathing problem (the required folders are not listed in OPTIONS' FILES TAB top entry) or the last guy erase everything on the way out.
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
Unfortunately our CADD adminstrator and Senior Drafting Specialist who set all this up passed away. Sounds like I'll be starting from scratch ![]()
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
If it makes any difference I was able to locate the ATC files for the tool paletes and I can load them into AutoCAD with ease but again; none of them are active or working.
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
"it kicks back an "unknown command INS-ANC" "
Based on the message sited in you earlier post, it looks to me like there may be some custom code (e.g. LISP) that is being called from at least some of your palette tools, but it isn't available because it's not getting loaded. You might look for error messages on the commandline as AutoCAD launches or as a DWG file is opened
ATC files do have some "mere-mortal-human-decipherable" parts to them (in among the gibberish). If you open one of the customized ATC files in your Palettes folder in a plain text editor (like NotePad), you can find file names and paths that might give you hints. But these things are generally more easily visible just by looking at the properties of a tool in a palette.
Have you looked at the properties of any of the tools that are misbehaving? Pick one and give us a screenshot.
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
Do you know for certain WHERE the blocks are stored? No guessing allowed. Also, are the blocks stored on a centralized server from which everyone taps into? Or does every user have the same copy (library of blocks) stored locally on their own hard drive?
Go to your Tool Palette=>Right-click a block icon=>Properties=>Source File=>Copy the source file=>Paste the contents of your clipboard to Notepad (paste the entire contents not just a portion). You can use the notepad doc as a 'reminder' so you don't forget where Acad is searching.
You may need to copy several files if the blocks are stored in multiple locations. You don't need to copy all locations (you can figure out the 'exact' number locations later). You just want a general idea of where AutoCAD is searching and whether it's searching in multiple locations.
No, you don't need to build a source file from scratch, you just need to update the path. If the path is a centralized server and the path has changed, you'll need to provide the new path. If the blocks are stored locally, however, you'll need to provide the path to your hard drive instead of using the path that's associated with a coworker's hard drive.
Chicagolooper
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
Thank you so much for your advice.
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
"...migrating palettes from a colleagues computer..."
...will not migrate the source files. ![]()
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
Hey,
I'm attaching a screen capture of a properties window of one of the tools to show that there are no source files present. Only a command string that's all but useless.
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
It's only useless if the "command string" (macro) references "functions" or other "stuff" (like paths and filenames) that are not "findable".
The macro begins with some AutoLISP code. One would have to see more of this to see where or why it isn't working. Please copy the entire string and paste it in a reply.
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
- 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.
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar