Joe_Carrick

Members
  • Posts

    12028
  • Joined

  • Last visited

Everything posted by Joe_Carrick

  1. Bonus Catalogs, Kitchen Accessories, Canisters Strange Location but that's where I found them.
  2. Johnny, You can have the macro %view.name% as the title in your CAD Detail and whatever you've named the CAD Detail in the Project Browser will be reflected in the Layout. But to answer your question - No, at least not that I've been able to determine. The updated Callouts for Sections and Elevations are the "Camera Callouts" which are basically different than Callouts placed in a View. ie: Elevation and Section Views, CAD Details, etc.
  3. Check your Firewall and AV Settings and make sure you except Chief and Chief Files. If the AV is scanning your Plans it can slow things down quite a bit.
  4. You can also try saving and rebooting your system.
  5. Is it being copied to a layer that's not displayed? Check your Text Defaults for the Layer that Text is to be created on. I see this when I have the default Text Layer off and I'm copying text from Notepad or some other source.
  6. It could be a Wall Type definition problem. Strange to say the least.
  7. 1. 3D Faces (Primitive Solid) can be extruded. 2. Molding Polylines use a Profile and extrude that 3. Solids can be "Exploded", resulting in 3D Faces (see note #1)
  8. Glenn, That's a good method for 2,4,8,16 segments - but it won't work for 3,5,6,7,9-15, etc. Ken's method works for all cases.
  9. Another thing to check: Click on the Layout Box and then Open the Ruby Console and type "referenced_full_filename" <enter> Does that show the name of the file with the revisions or a prior version?
  10. That should be automatic unless you've converted those to CAD Details and sent the CAD Details to Layout. If you just send the Plan Views directly to Layout they should automatically update as you make modifications.
  11. Larry, If you use Text Styles religiously, you can just go to defaults and check that box for each of your Text Styles. It only takes a few minutes. I think unfortunately that many users have a hodgepodge of text definitions in their plans and layouts. There are so many different places in Chief where the text parameters can be defined that it makes for a mess. I've been spending some time over the last month cleaning up my Templates (Defaults, Layer Sets, Text Styles, Annosets, etc.) Personally, I have some Text Styles that are not all Caps and some that are. I use Arial and Chief Architect Blueprint for just about everything and I have those for 3 scales (1/8", 1/4", 1/2") and 3 sizes (1/8", 3/16" & 1/4").
  12. Jared, This could be done with the following: internal_area * (finish_ceiling_elevation - finish_floor_elevation) I don't think it would be much work to add it to the Room Area Macro Package. Essentially $RoomAreas already has that data stored for each room so it would be a simple matter to create a Total_Room_Volume macro that just goes thru that array and sums them up.
  13. Johnny, I can make it work in Ft-In - but only using the Label, not a Text Box. It requires custom macros to convert the numerical values to formatted text strings.
  14. Johnny, You are using Chief's built-in Global, Object Specific macros. Those are fixed format in inches. Unfortunately user macros can't be used in Text Box Room Labels so you can't format those to Feet and Inches.
  15. Johnny, Any .pat file can be used. If you change the Fill Style "Type" to Custom you can browse for additional pattern files. Chief has several OOB but you can import additional files. There is in fact a Gravel pattern in C:\Program Files\Chief Architect\Chief Architect Premier X8 (64 bit)\Patterns\CHIEFARC.PAT
  16. Replace %file.name% with %client.name% (Insert>Global>Contact Info>Client) You can add addional text in this box by using the other macros available. This will pick up the Client Name as entered in "Tools > Project Information" BTW, if you convert that Text Box to Rich Text you will have full formatting control of all the text in the box.
  17. Open the Room and un-check "Use Room Type". Then you can type any name you want in the "Room Name" box.
  18. Post your Layout Template. There's no way we can determine what you did without the actual file.
  19. That get's much more complicated. You need a way to accumulate and store the values for each Polyline. This can be done using Ruby Global Variables. I have a macro package called "Hash Areas" that I sell for $25 that does this for the areas. I consists of several macros, one to collect the data and others to perform calculations and display results. I spent a lot of time figuring how to do it and create the macros. The functionality is well worth the price and by studying the macros you can learn a lot This same system can easily be modified to use for "Total Length" instead of "Areas"
  20. result = (owner.visible_length-72)/2 result = result.round(2) or result = ((owner.visible_length-72)/2).round(2) To use any "Ruby Method" just use a "." before it. That tells Ruby that the following is a modifier.
  21. Johnny, That looks like a job for the "Plan Notes Schedule".