Anuncios

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

Distribute custom command in different autocad machines

Anonymous

Distribute custom command in different autocad machines

Anonymous
No aplicable

I was create a command for autocad now i want to distribute it in different machines in my firm. How can i do this?

0 Me gusta
Responder
322 Vistas
2 Respuestas
Respuestas (2)

Patchy
Mentor
Mentor

Replace their acad.pgp with what you made.

0 Me gusta

Kent1Cooper
Consultant
Consultant

That depends on the way it was created.  If it's an AutoLisp routine or .VLX file or .DCL or some such thing, you can copy the file(s) around, or if all computers have access to a shared Server, put it there and add its filepath location to the Support File Search Path list [in the Files tab in OPTIONS] on each computer.  If it was made with the Action Recorder, read about the ACTPATH System Variable and related topics, and set that in each computer to include the location of the file.  Have their acaddoc.lsp files load it if you want it available without each User having to load it themselves.  [Even acaddoc.lsp can be a shared file on the Server that loads it for everyone, if people don't have individual acaddoc.lsp files.]

 

If it's a command alias, I would recommend that you copy the line that defines it into everyone's ACAD.PGP file [and check that they don't already have the same letter(s) defined as an alias], rather than copy the acad.pgp file itself, because individual Users may have their own different adjustments to that file.

Kent Cooper, AIA
0 Me gusta