| Tiny URLs This is not CAD specific but is still worth mentioning. Sometimes when you try to refer to a long link URL in an email or news post, the link can become broken because the mail/news tool wraps the link into two (or more) lines. Unknowing users are frustrated because the link doesn't appear to work when they click it, and even experienced users have to paste it into a notepad and remove the line breaks. In this situation, head to http://www.tinyurl.com and paste in your long link. A tinyurl 'mapped' link will be returned that's usually 20-30 characters and will never break. How do I change the default drawing open directory? Right click on your launch icon and choose Properties, choose ShortCut, then change the path shown in the 'Start In' field. Note that if your new path contains spaces like "C:\My Drawings" it should be enclosed in parenthesis, otherwise they are not necessary. The default behavior beginning in 2000i is for the application to remember the last folder accessed, even between sessions. This can controlled by the REMEMBERFOLDERS variable which defaults to 1. This is an integer (0/1) and is stored in the registry, meaning you only need to set it once. When set to 0 it causes AutoCAD to behave as previous versions, honoring the settings described above. AutoCAD 2000 Properties Dialog doesn't do Previous A favorite procedure for some in older versions of AutoCAD was to build a selection set, then issue the DDCHPROP command and specify P for the previous set. With the new AutoCAD 2000 Properties command, which totally replaces the DDCHPROP command, you can't specify the previous set. A little bit of LISP to the rescue. Place this code snipped in your ACAD.LSP file so that its automatically loaded, and simply type issue CHGPREV command to wake up the properties dialog with the previous selection set. (defun C:CHGPREV () (setq sset (ssget "P")) (if sset (progn (sssetfirst sset sset) (command "_.PROPERTIES") ) ) ) How do you DXFIN into an existing drawing? In the old days of R12/R13, you could be in a drawing full of objects, and do a DXFIN to merge additional objects from a DXF file. But that changed in R14, requiring you to begin a new drawing, DXFIN, saveas a DWG, reopen the original drawing, and insert the newly converted file. Now using AutoCAD 2000, you can once again bring DXF based geometry directly into the existing drawing. - Issue the INSERT command.
- Choose the BROWSE button.
- Pull down 'Files of Type' and choose *.DXF.
- Select your DXF file and choose Open.
- Turn on the 'Explode' toggle.
- Turn off the rest of the toggles.
- Choose OK to complete the operation.
Starting AutoCAD 2000 with no starting drawing! If you would like to start AutoCAD 2000, but don't want a blank empty drawing, and you are not using the 'Startup Dialog' you can put this in your ACAD.LSP and it'll create this effect. (defun-q mystartup () (while (eq 1 (logand 1 (getvar "CMDACTIVE")))) (command "_CLOSE") ) (setq S::STARTUP (append S::STARTUP mystartup)) In LISP code, don't (regapp) until you have to! It may be tempting to place the (regapp) code at the top of your LISP code so that you won't have any problems adding EED during your application. But doing so changes the status of the DBMOD, and disables the already fragile ability to DXFIN. Place the (regapp) in the specific function that creates/modifies the object, right before the code that actually creates it. On the subject, its not a bad idea to check to see if its already registered like: (if (null (tblsearch "APPID" "MYAPPID")) (regapp "MYAPPID") ) How can I change a solid or surface into 3DFACE's? Using R14 or higher you can issue the 3DSOUT command to create a file, then use 3DSIN to read it back in to create the 3DFACE's. What are proxyobjects and can I delete them from a drawing? They are custom objects that require the presence of the application that generated them to be 'fully' functional. Sometimes when the application is absent they will still appear/plot the same but you can't edit them or acquire information about them. Sometimes you might even get a box with an X through it as in the case of the RTEXT object. The AEC group of Autodesk deserves credit for releasing the recent versions of the Object Enabler. It is free and allows recipients of drawings with their proxies to see and do more with the otherwise impossible representation. Depending on your situation, saving the drawing in an R12 format (different file name of course) is a brute force approach to purging the drawing of proxies. However depending on whats contained it can have ill effects. AutoCAD Temp & Backup Files In AutoCAD, other than the DWG file, there are other files you are working with, whether you know it or not. - BAK files: Unless you turn it off in OPTIONS, when you save a drawing that already exists on file, the .DWG is renamed to .BAK, then the new data is written to .DWG. Don't rely on this for true safety of your files, because .BAK files have been known to become corrupt.
- AC$ Files: These are temporary files created by AutoCAD during the process of creating the drawing. They are only of value to AutoCAD during editing and are usually cleaned up when AutoCAD closes. These files are useless if AutoCAD crashes.
- SV$ Files: These are autosave files, controlled by the setting inthe OPTIONS dialog. These files are the equivalent of a DWG, you would only need to rename them if AutoCAD crashes. It's important to note that if AutoCAD closes normally, these files are deleted!
Converting DGN to/from DWG We see this question a lot. MicroStation users benefit from the built in support for both formats. For some reason Autodesk only implemented DGN in their Map (and derivative) products. Of course not all DGNs are maps! A long time source for conversion is Decision Graphics, now known as DGI Office Tech Systems. They offer conversion software for those with a full time need, as well as a very affordable service for those with occasional needs. More info at http://www.dgnlink.com Launch without the Logo Save yourself a second and eliminate some visual noise every time you start AutoCAD by turning off the logo. Right click on your launch icon and choose Properties. On the Shortcut tab, in the Target field, carefully append a space and the /nologo switch. How do I restore from a BAK file? By default AutoCAD makes a backup file with the extension .BAK as you work with drawings. Some users aren't aware of how to use this file when the DWG becomes corrupt. The problem is mostly to the fault of Microsoft and their explorer defaults. - Launch Windows Explorer and navigate to the folder that contains the file(s).
- Choose Tools > Folder Options.
- Click on the View Tab.
- In the 'Files & Folders' section, turn off the toggle on 'Hide extensions for known file types'.
- Choose OK (extensions should now show).
- Left click on the BAK file to highlight it.
- Right click and choose Rename (or press F2).
- Change the name to something like RECOVER.DWG.
- Open the file as normal in AutoCAD.
Note that AutoCAD has been known to sometimes corrupt the BAK file as well. Educational Plot Stamp Be careful when inserting blocks or drawings from outside sources, especially those you have never worked with before. If the party providing the file was using an educational version of AutoCAD, you can find your plots from a full license of AutoCAD saying "PRODUCED BY AN AUTODESK EDUCATIONAL PRODUCT". If you find yourself in this situation, you can usually save the file in a DXF format, then reopen it to strip the message. If you're concerned about files of this nature lying in wait to be batch plotted, you can scan for these files with a tool from ManuSoft. EDU-Scan athttp://www.manusoft.com/Software/EDU-Scan/Index.stm Little Known Reference Manager Because it's not shown on the AutoCAD menus, it's often overlooked. For recent versions of AutoCAD, click the Windows Start Menu, choose Programs > Autodesk > AutoCAD. In the same group as the AutoCAD launch you will find the Reference Manager, which can be used to repath xrefs, images, etc. How do I migrate the AutoCAD Express Tools from 2000? Use this link to the Autodesk website procedure. http://support.autodesk.com/knowledgebase/html/303824.htm Prevent Unnecessary Problems with Autodesk Service Packs Many AutoCAD users don't realize that after installation their system still needs service packs applied. Failure to do this can mean that they suffer through problems that have already been fixed. Autodesk does a good job of making service packs available for all the versions you are likely to run. We found patches going all the way back to R12 for DOS! - Click on this link http://www.autodesk.com/support
- Pull down the list and choose the Autodesk product you use.
- In the lower left corner of the menu at left, click on "Data & Downloads"
- Under that section, click on "Updates & Services Packs"
- Find the version you are running and the patches available.
Third Generation of OS Commandline Copy
First there was the DOS copy command, then people discovered XCOPY which was faster and more capable. Now there is a third generation called ROBOCOPY, which stands for 'Robust Copy'. Take for instance the need to create an exact backup of an entire drive to a folder on another drive, including the ability to remove files from the copy if they have been deleted from the source. Essentially a mirror backup!
RoboCopy is one of many handy tools in the 'Windows Server 2003 Resource Kit Tools', but you don't need to be running server to use them. You can download it directly from Microsoft using this link.
Microsoft Download: http://tinyurl.com/6p6cy Watch outside DWGs
There are two major issues to watch for on drawings from outside sources. The first is the Educational Version Plot Stamp issue, which spreads like a virus by simply inserting a drawing created with the student edition as a block into your drawing.
The second issue arises with newer versions of AutoCAD and the warning that a DWG wasn't created with genuine AutoCAD.
If you open one of these files and save it with AutoCAD, you would assume the message would go away, but it doesn't. The file you save will also report it wasn't created with genuine AutoCAD? The best solution is to open the DWG and use AutoCAD's WBLOCK command, then choose 'Entire Drawing' for the source. |