Joe_Carrick

Members
  • Posts

    11952
  • Joined

  • Last visited

Everything posted by Joe_Carrick

  1. This is partially available right now using Custom Schedule Columns and the Components List which can use a macro to get the data. The Callout comes from the schedule and the data from the object comes from the macro in that field of the Component List. But the use of this is currently not set up to provide variation within the macro as much as we need.
  2. As a member of the 2015 User Feedback Panel one of my most important things is making ConDocs as accurate and easy to complete as they can be. Automatic annotation based on the model is therefore right at the top of my list.
  3. While it's true that using the Text Macros the way Perry does to save typing the note over and over is effective, it would be much more effective if we could access the actual Roof Finish Layers, Wall Finish Layers, etc directly from the Plan database via Ruby attributes. Here's an example of how this could work: Chief knows the make up of the Layers of a Wall. If that information was available as Ruby attributes for walls, we could write a macro to create a note specifying exactly that information (down to the main layer) and have that displayed as a Wall Label in the Elevation View or in Sections, Wall Details, etc. The Label would be consistent with the model rather than being just something we type. This is really the only way to be sure the Label is what is in the model rather than something else. It would avoid errors and also provide feedback to the user about what his Wall, Roof, etc was made of.
  4. Sherry, I'm currently only able to keep them organized alphabetically. I have a standard series that I have in my Default Plan Template and my Default Layout Template but that is a pretty large list and it tends to more than fill the screen when I go to select a macro. I've made a suggestion on the "Suggestions Forum" https://chieftalk.chiefarchitect.com/index.php?/topic/4581-text-macro-management-organization/#entry39741 for a Browser with Tree Structure (Folders and Sub Folders). I have also sent that to "suggestions@chiedfarchitect.com". It would be a good idea if everyone would send the same suggestion. In order for it to be high on the priority list they need a lot of requests.
  5. Bernie, Try the "Little Book of Ruby" www.sapphiresteel.com/IMG/pdf/LittleBookOfRuby.pdf That's a pretty good reference - and it's free.
  6. One thing that you will notice using Perry's "Text Macros" is that they are specific to the Current Plan. Changing the macro on one Plan doesn't effect other Plans unless you export it and import it into the other Plan. For things that should always be the same from Plan to Plan I put the macros in my Default Template.
  7. After you create the Slab Foundation, Switch to Stem Walls and draw over the Exterior Footings with "Foundation Walls". You might need to check the box for "Slab at top of Stem Wall".
  8. But not with the latest version I posted
  9. Larry, I would not make "Custom Window Symbols" for what you are using them for. I would start with a Standard Window and work with Casings, Sills, Aprons, Lintels (using Custom Molding Profiles) to get the exact Window configuration. Then I would add that window to my Library. Then when you get that window from the Library it brings along all the detail. Chief's "Custom Window Symbols" were really designed to be "Projection Windows" ie: Applied to the exterior. They still have several problems in how they work and I've reported those - maybe we'll get them fixed in X8.
  10. That might work but you would definitely need to make sure the same material was used for both the countertop and the edge molding in order to avoid the black line. even then, I'm not sure that would do it.
  11. Mark, Sorry about the first one. I didn't have my molding cutter properly indexed to the front of the drawer face. Try this one. Lipped Drawer - JPC2.calibz
  12. With Chief Architect, Ruby is currently limited (mostly) to creating textual data which can be displayed in Labels or Text Boxes. Many Chief Objects have available attributes (data about the object) that can be retrieved within a macro and used to do calculations and return the text to be displayed. What's possible depends mainly on what attributes are available. If there's some text you want to create in Plan or Layout from the data contained in Chief (automatically vs manually entering it) it can in most cases be done using macros. So that's your starting point in deciding what you would like a macro to do.
  13. Mark, My Lip Inset profile is pretty typical for that kind of door - to match how Lip-Inset Hinges fit. Generally, the rabbit around the back face of the door is 3/8"x7/16" and the door/drawer overlaps the face of the cabinet 1/4" all the way around.
  14. Note: When I positioned the Drawer Front I made sure the front face was flush with the radius portion of my Molding Cutter. That's the key to eliminating the line.
  15. Dennis, Starting in Plan View 1. I created a closed polyline with the reverse profile of the edge (like a molding cutter that a cabinet shop would use). 2. I converted that to a Polyline Solid 40" tall. 3. I converted that to a Solid. (I blocked it and added to my library of "Cutting Tools" for future use.) Then I displayed an Elevation View 4. I arranged 4 of these to form a "Frame" with an inside dimension of 32" wide x 6" tall 5. I next created a solid box 36" wide x 8" tall x 3/4" thick and positioned it so that it was centered on the above "Frame" 6. Using Solid Subtraction I cut away each edge of the drawer. I need to do a little testing to see if I can save 3D Faces in the Library - kind of like Molding Profiles but to use to extrude as "Molding Cutters".
  16. Larry, There are some books on Ruby you can download but the language IMO is not very well documented and it takes a bit of work and practice to do some of the things I do with it. If you can tell me what you want a macro to do - I'll tell you if it's possible, practical and what I would charge for it.
  17. Mark, Here's one I created using Chief Solids. I created a cutting tool to trim the edges - similar to a router bit. Lipped Drawer - JPC.calibz
  18. Mick, You should be able to get rid of the extra lines by specifying in the Structure Tab of the Foundation Wall Defaults - Hang Floor Platform Above on Wall.
  19. Bernie, This is a macro I use to set up some Ruby Global Variables by writing/reading a file x = "" $BuilderName = "Builder" $BuilderCompany = "BUILDER COMPANY" $BuilderStreet = "Street Address" $BuilderCity = "City" $BuilderState = "ST" $BuilderZip = "99999" $BuilderPhone = "(999) 999-9999" $BuilderFax = "(999) 999-9999" $BuilderEmail = "email@mailserver.com" if File.exist?($fnbldr) cBuilder = File.read($fnbldr) else cBuilder = "Builder BUILDER COMPANY Street Address City ST 99999 Ph: 999-999-9999 Fax: 999-999-9999 Email: builder@mailserver.com" File.open($fnbldr,'w'){|f|f.write(cBuilder)} end cBuilder = cBuilder.dump aStrings = cBuilder.split('\n') $BuilderName = aStrings[0].gsub('"','') $BuilderCompany = aStrings[1].gsub('"','') $BuilderStreet = aStrings[2].gsub('"','') $BuilderCity = aStrings[3].gsub('"','') $BuilderState = aStrings[4].gsub('"','') $BuilderZip = aStrings[5].gsub('"','') $BuilderPhone = aStrings[6].gsub('"','') $BuilderFax = aStrings[7].gsub('"','') $BuilderEmail = aStrings[8].gsub('"','') x Note: $fnbldr is one of several previously established Ruby Global Variables that are the names of the files to read/write and include the full paths. The names are derived by the following macro that needs to be executed someplace - I put in my Layout Title Block. It's important to note that I have a separate folder & sub-folders for each project, so the file names are guaranteed to be unique. x= '' $fnsi = referenced_full_filename.gsub(".plan","") $fnpi = $fnsi+ " Project Info.txt" $fnst = $fnsi+ " Struct Engineer Info.txt" $fnbldr = $fnsi+ " Builder Info.txt" $fnsurv = $fnsi+ " Surveyor Info.txt" $fngeol = $fnsi+ " Geologist Info.txt" $fnT24 = $fnsi+ " T24 Consulant Info.txt" x
  20. To do the Slab 1/2 on the Block Wall you need a Pony Wall (Basically a "Brick Ledge" as Chief calls it) but on the interior instead of the Exterior. The Pony Wall would be the full thickness and the upper part of the Stem Wall would only have the 1/2 Block.
  21. You need to have the Main Layers of the Stem Wall and the wall above align. The Main Layer of the Stem Wall should be the CMU and the Main Layer of the wall above should be the Stud Framing. Your Stem Wall needs to include the extra layers for the brick. Actually, you should probably use a Pony Wall so you have a "Brick Ledge" as it isn't good practice to have the brick extend below grade. Bricks tend to deteriorate when in constant contact with wet soil. BTW, the flashing should go behind the vapor barrier.
  22. I put them on the 1st Floor, dimension them, then copy->paste->paste hold position on all the other floors. I have them on a separate layer so it's easy to just set all other layers off - then marquee select.
  23. Richard, What is your System Configuration? This sounds like the problem with some older computers using HD2000 Graphics Cards and Drivers. I had this sort of problem on one of my systems and just decided to spend a couple hundred bucks for a new NVidea Graphics Card. IAE, contact support for to see if they can help.
  24. Todd, In X6 File->Export->Export Hotkeys (will be XML) In X7 File->Import->Import Hotkeys (XML) This is no problem.
  25. Glenn, Just hit the "Break Line Hot Key" twice in succession. That's the same as Double Clicking on the icon.