adt-osmosis_appendix_text.gif (704 bytes) Architectural Desktop 3 - Deployment eGuide
PART X

APPENDIX

Contents:
Appendix - Overview ---- Downloads ---- Converting Style Tables ---- Navigating with DesignCenter

1Appendix - Overview 1-X APPENDIX
For each of the eGuides where Downloadable files are included, I have added an Appendix such as this to make those files accessible in a more direct fashion than hunting through all of the webpages.  In addition to the downloadable files, the Appendix will be used to add information that is found to be relevant in some esoteric way while not being a direct part of the eGuide.

 

 
2Downloads 2-X APPENDIX
Files and Exercises used in this Guide
Item Description
Note on Downloading If you have any problems downloading these files, right-click over the link and use the Save Target As... option to save the file to a specific directory ( folder ) on your machine.
.AEC ARCHIdigm Standard.dwt ARCHIdigm's basic ADT 3.3 starter template file intended for use as a replacement for "Start from Scratch".  This is a good place to start. Standard Wall, Door and Window Styles have been modified to work better if users decide to use them.  Display System has been purged and modified for easier use and comprehension.  Modification of Layers, Layer Standard and Layer Keys may be required.  File Name: ".AEC ARCHIdigm Standard.dwt"
.AEC ARCHIdigm Standard Section-Elevation.dwt ARCHIdigm's basic ADT 3.3 starter template file intended for use as a companion to the .AEC ARCHIdigm Standard.dwt template ( above ) for the purpose of generating Sections and Elevations.  Xref files created in the Standard template into this template and use the existing Section Object to create 2D Sections and Elevations. Modification of Layers, Layer Standard and Layer Keys may be required.  File Name: ".AEC ARCHIdigm Standard Section-Elevation.dwt"
adt3_simple_display_example_1.dwg Example ADT 3.3 drawing with 3 Wall Styles for Proposed, To Be Demolished and Existing.   This file also contains examples of two Door Styles for typical Interior and typical Exterior where thresholds are on.  Window and Door Examples have unique Dimension and Display Property Settings that mimic the simple appearance many residential firms seem to desire.  File Name: "adt3_simple_display_example_1.dwg"
Sheet_Layouts.zip All Folders, Files and Menu Code for Part 9 - Automating Sheet Layouts.  The .zip file includes the folder structure and comes with a readme.txt file.  File Name: "Sheet_Layouts.zip"
   

Template files have the three letter extension, ".dwt" and should be placed in the Template Folder.  Both AutoCAD and Architectural Desktop can Start with, Open and Save As... (file format) "dwt".  With Explorer, you can rename the ".dwt" to ".dwg" and vice-versa to change how the program reads the file without damaging the file in any way.

3Converting Style Tables 3-X APPENDIX
Converting Drawing File Plot Styles

When you work in an environment that mixes Color Plot Style Tables and Name Plot Style Tables, inevitably you will find that you need to convert one to the other.  The process of conversion is actually more complex than it should be so the steps are outlined below.

.CTB to .STB:

The Command to Convert a .ctb based drawing file to an .stb based file is ConvertPStyles.   Unfortunately, you will be prompted for a .ctb file to convert into a .stb file before the conversion can take place correctly.  If the office has a standard default file for this it will simply be a matter of selecting this file but if you don't have such a file, you will have to create one first.

1) Creating the .stb file with Mapping Properties:
Use the ConvertCTB command to Select the Current Color Table ( .ctb ) file for Conversion into a Named Plot Style Table ( .stb ) file.  Once this process has been executed, you will have a Named Plot Style Table that has the proper Mapping information in it to make the conversion possible. 

2) Converting the drawing File:
Once the special Named Plot Style Table with the Mapping information has been created ( as per step 1 ), you can use the ConvertPStyles command to convert your file.  Make sure to Select the correct Named Plot Style Table ( .stb )created in step 1 when asked to select a .stb file.

.STB to .CTB:

The Command to Convert an .stb based drawing file to a .ctb based file is ConvertPStyles. Unlike the process of converting .ctb files, this process is simple and only requires that you execute the ConvertPStyles command and then select any desired .ctb file.

plot_style_table_converting
4Navigating with DesignCenter 4-X APPENDIX
DesignCenter - AutoCAD
Menu Tools> AutoCAD DesignCenter    Ctrl+2
designcenter_button.gif (534 bytes) standard_toolbar.gif (7661 bytes)
Keyboard AdCenter
Links  

In AutoCAD and Architectural Desktop, the DesignCenter can be accessed through a number of different command options but CAD and IT Managers often want to take this tool a step beyond the basics.

If you use Architectural Desktop, be aware that there is a significant difference between naviagating the AutoCAD DesignCenter versus navigating the Architectural Desktop DesignCenter.  On the surface they appear about the same but for Architectural Desktop, full functionality is based upon a path statement - see comments below.

In AutoCAD, you can use the following commands to activate the DesignCenter:
Adc
Content
AdCenter
AdcNavigate

To create a lisp routine or simple button macro that takes a user to a specific folder with the DesignCenter, you can use the following statements:

For a button: ^C^CAdc;adcNavigate;driveletter/foldername;
Observe the use of the command "adc" to invoke the DesignCenter before setting the path.  Also, observe the forward slash instead of the backslash.

For a lisp routine: (command "adc" "adcNavigate" "driveletter/foldername")
Observe the use of the command "adc" to invoke the DesignCenter before setting the path.  Also, observe the forward slash instead of the backslash.

If you wish to navigate inside a drawing file to a specific data category such as Blocks, Dimstyles, Linetypes and so forth, you can simply need to add the full path to the drawing file, the drawing file name and extension ( .dwg ) followed by the category.

Below is an example button or pull-down menu for navigating into a drawing file to access the Blocks within that drawing.

^C^CAdc;adnavigate;driveletter/foldername/filename.dwg/Blocks

DesignCenter - Architectural Desktop
Menu Tools> Options... (Content Tab)
   
Keyboard Options (OP)
Links AEC Content Tab - for more information on where the Path is set in Architectural Desktop's Options dialog box.

In Architectural Desktop, there are essentially two DesignCenters; one from AutoCAD and one that has enhanced features for Architectural Desktop (listed as Custom Applications ).  You will soon discover the difference when you attempt to drag-n-drop content in from outside Architectural Desktop's default Content Folders: no autolayering, for example.  Items that reside within Architectural Desktop's Content Path can "react" upon the dragging action and thus can also "behave" in very practical ways.  The only problem with this, for the CAD and IT Manager, is that you will need to navigate the DesignCenter uniquely for Architectural Desktop Content.

In Architectural Desktop, you can use the following command to activate the DesignCenter for custom content folders:

AdcCustomNavigate

To create a lisp routine or simple button macro that takes a user to a specific folder with the DesignCenter, you can use the following statements:

For a button: ^C^CAdc;adcCustomNavigate;Architectural Desktop/Imperial/OtherFolderName;
Observe the use of the command "adc" to invoke the DesignCenter before setting the path.  Also, observe the forward slash instead of the backslash.  The Imperial directory can, of course, be changed to "Metric".

For a lisp routine: (command "adc" "adcCustomNavigate" "Architectural Desktop/Imperial/OtherFolderName")
Observe the use of the command "adc" to invoke the DesignCenter before setting the path.  Also, observe the forward slash instead of the backslash.  The Imperial directory can, of course, be changed to "Metric".

For all Architectural Desktop Content, you must keep everything within folders that are under the AEC Content Path; in other words, you cannot have ADT Content wildly destributed throughout your office network.  If you think about this for a second, it's not really that bad a situation because you simply have to decide on where to store all of the ADT specific content and you can even designate a full drive letter as the source for all content.

   

© Copyright 2002 - 2003 ARCHIdigm. All rights reserved.

spell checked on Jan. 22, 2002 (gr)