It is a well established fact that I am lazy. One common task I find my self doing in an AutoCAD environment is browsing to files I need to open. My file structure has them placed near each other but I have to keep drilling down to the appropriate folders and files. Because my drawing files are usually always in the same folder I wrote a simple command macro to open Windows Explorer pre-browsed to the folder where the current drawing is located. Add this to a palette or toolbar to quickly access drawings in the same folder as the current drawing.
Here's the Macro:
(command "start" (strcat "explorer " (getvar "dwgprefix")))
Here's what it means:
(command "start" tells AutoCAD to shell out and start another program.
(strcat "explorer " Tells the operating system to start Windows Explorer
(getvar "dwgprefix"))) tells explorer to browse to the current drawings prefix, which happens to be the folder it is located in.
I hope this little gem makes your life easier, because that's what I'm all about.
Monday, February 27, 2006
Monday, February 06, 2006
AutoCAD Wormholes using Shortcuts
As a CAD Manager I was responsible for a lot of different people who all had various projects going at any given time. One problem I ran into was I had many clients that wanted thier drawings plotted with thier own CTB files. Being a control freak, I had locked down CTBs on a network drive so my users wouldn't willy nilly change the company standard. Now, I had a problem. Every time a new CTB was called for, users needed me to place it in the appropriate network folder so they could have access to it.
Being lazy, that was too much work for me. My solution was placing a Windows shortcut to "C:\AcmeCAD\CTB" in the appropriate network folder. Because I created this exact folder on all my users hard drives, they could place any CTB they wanted there. The pathing in AutoCAD would go to the assigned network path, then wormhole through the Windows shortcut back to their own hard drive for the needed CTB file.
This gives the user access to an editible area for files (not just CTBs, think about it...) and holds a secure area for company standards. I hoped this gave my users the ability to get thier jobs done and me the security of knowing my company standards were safe.
Look through the paths tab in options, are there any other places a wormhole might be useful for your company. I bet there are.
Another Use
If you are using the Project Navigator in ADT or ABS, you can place shortcuts to all of your projects in a single directory. I like the idea of placing them in the root of your personal network drive (sometime mapped as the H: drive or Home drive). Now when every I open the Project Browser, I simply select the H:\ drive and I see only my current projects.
This process frees me from changing my network architecture to accomodate the Project Browser and gives every user easy access to thier projects without browsing them out. Awesome.
Being lazy, that was too much work for me. My solution was placing a Windows shortcut to "C:\AcmeCAD\CTB" in the appropriate network folder. Because I created this exact folder on all my users hard drives, they could place any CTB they wanted there. The pathing in AutoCAD would go to the assigned network path, then wormhole through the Windows shortcut back to their own hard drive for the needed CTB file.
This gives the user access to an editible area for files (not just CTBs, think about it...) and holds a secure area for company standards. I hoped this gave my users the ability to get thier jobs done and me the security of knowing my company standards were safe.
Look through the paths tab in options, are there any other places a wormhole might be useful for your company. I bet there are.
Another Use
If you are using the Project Navigator in ADT or ABS, you can place shortcuts to all of your projects in a single directory. I like the idea of placing them in the root of your personal network drive (sometime mapped as the H: drive or Home drive). Now when every I open the Project Browser, I simply select the H:\ drive and I see only my current projects.
This process frees me from changing my network architecture to accomodate the Project Browser and gives every user easy access to thier projects without browsing them out. Awesome.
Subscribe to:
Posts (Atom)