Joe_Carrick

Members
  • Posts

    11881
  • Joined

  • Last visited

Everything posted by Joe_Carrick

  1. Amazing what's in the Help File. So many times we forget to check that first.
  2. Scott, Select the Object Eyedropper and the press F1. Read the Help File. It will tell you what you want to know.
  3. Scott, I think you will find that will change all the existing cabinets that have that set as (D) - ie Default.
  4. Defaults ? - the Wrench Icon on the Edit Toolbar Object Painter ? - the Eyedropper Icon with "O" on Top Toolbar Match Properties ? - the Match Properties Icon on the Edit Toolbar These all do different but similar things. You need to explain a little more what you want to do. The "Object Painter" was added in X7.
  5. I can't tell for sure why, but one thing is that they are using 2 different fonts.
  6. Scott, By doing it once (positioning that is) and blocking it it can be added to the library - retaining the definition as a cabinet and a geometric shape. Resizing can be done by selecting and tabbing to the individual components. The biggest advantage to this solution is that it only adds 5 faces to the Plan. Using a Cabinet for the Liner adds a minimum of 24 faces but that could go even higher. Another problem with using a Cabinet as Michael outlined is that you would also need to make it Frameless so that the inside cabinet won't show if there's no Door(s) on the outside cabinet. There is also the depth issue because you wouldn't want the "liner" to cover the Face Frame at top and bottom. It's really just the box that would be "lined".
  7. I found an interesting thing about this. I can block the Cabinet and the Liner together and add it to the Library. When I place it in the Plan I have both already placed together as a block. To resize you have to select & tab but that's pretty simple.
  8. Here is a "Cabinet Liner Symbol". It can be sized and positioned as needed. Generally, it should be: width: Cabinet Width - 1 5/8" height: Cabinet Width - 3 1/4" depth: Cabinet Depth - 1 5/8" Position should be 1" from back of cabinet, centered side to side and top to bottom. Cabinet Liner.calibz
  9. Here's another pic - I just manipulated the PSolid a little to cover the interior sides. The next one uses a open front box symbol positioned inside the cabinet. I just created a 3D Box, exploded it and deleted the front face. Then I converted that to a Symbol. It can be adjusted to any needed size.
  10. If is the key word. In the long run, separate materials for: Face Frame Interior Sides Back Interior Top & Bottom would provide the ultimate flexibility.
  11. Since it is very common to have a different color/material for the Face Frame of Cabinets than the interior - it would be appropriate for there to be a separate material selection for the Face Frame. There was another thread where the "Back Material" was also suggested so that it could be "Transparent". This would be a good thing to put in "Suggestions"
  12. So here's a pic of my solution. The Cabinet, Door, Molding and Shelf materials are all set in the Cabinet dbx. I added a thin PSolid inside the Cabinet (Red) to hide the back interior face of the cabinet. You have to make sure it's far enough away from the wall so the cabinet back isn't in front of the PSolid. If you look closely at the inside right corner of the cabinet you will see that the PSolid doesn't quite cover all of the cabinet back - I was a little sloppy Sorry Scott - no Plan but the pic speaks for itself in this case.
  13. I agree with Scott. Dennis' example is misleading because he used a full overlay door and didn't show a view of the sides or top of the cabinet. If the door wasn't a full overlay you would see the cabinet face as the same material as the interior.
  14. Instead of than turning them off.... Make the text size 1" and it's color white. Also, lock the Layer. That way, it's there if you ever need it (maybe to add a macro) but it doesn't get in the way.
  15. OK, so here's the bottom line: Ruby is a pretty basic programming language. It can perform math operations on numerical data and it can manipulate text data. In addition, it can store and retrieve data in Hash Tables and Arrays as well as read and write to computer files. Programming is just understanding the "syntax" and how conditions are handled. The Ruby Syntax is a little different than some other programming languages but IMO is not much more difficult than "Basic" and much easier than a lot of other languages. Ruby uses what are referred to generally as "methods" but I like to think of as modifiers. Here are some examples of how a text string can be modified by Ruby: x = "My Text String" y = x.length --> 14 x = x.upcase --> "MY TEXT STRING" x = x.downcase --> "my text string" x = x.gsub("my ","") --> "text string" x = x + " is now all lower case" --> "text string is now all lower case" if x.length > 14 y = x.length --> 33 else x = "Something Else" end x.rjust(y) -------> " Something Else" Now is everyone totally confused? It's just a matter of making modifications to data.
  16. There is also a Chief Global Macro Plan > %Living Area% that can be inserted in any Text Box to display the Living Area of the Current Floor.
  17. A Macro in Chief - basically returns Text to be used in a Label or Text Box. Internally, the macro can do more but what the user sees is the text output. In most cases anything internal to the macro is both invisible to the user and can't be used for anything else. Chief provides some predefined macros which they call GLOBAL & Object Specific. These provide some commonly needed text to be displayed in Labels or Text Boxes. In no case is that data available to use in another macro - it is simply displayed as text. Even User Defined macros don't (usually) provide data that's available to other macros. However, Chief provides some data as object attributes that can be accessed and used to calculate values, manipulate text, etc. That way, additional information can be displayed that is not provided by Chiefs' Global and Object Specific macros. So here's a kicker: Within a Chief Macro, a special type of variable can be defined. This is a Ruby Global Variable which is defined simply by using the "$" as the first character of the variable name. During the same session of Chief any such variable can be used by any macro. IOW, if a macro creates and uses a variable named TotalDecks it is confined internally to that macro and the value is not available to use in any other macro. However, if it creates a variable named ($TotalDecks = 235) then another macro can use it as follows: x = $TotalDecks + 115 resulting in the output of 500 This is a relatively simple example but the key is that the data is available to use between macros, allowing more complex output. It is even possible to access (read and write) information to and from external files, format text, etc.
  18. Greg, It's probably closer to 300 sqft extra siding because you would have to do a 12" height even if you took out the ceiling and didn't add the 8" space between the Floor Joists and the existing Ceiling Joists. But then you would have to redo all the lighting and ceiling finish anyway. The cost is difficult to figure without knowing all the parameters.
  19. I'm still trying to figure out how he hit a 310 yard drive on a par 4 when he played with dsh and me a couple of months ago, all the way to the back of the green.
  20. There is only one of the Andersen Windows in that attachment, not the entire set.
  21. Here's an example. There are almost 30 symbols in the set of Andersen Bay Windows. I created them using Chief Solids for the various pieces and sized them to fit. This particular Symbol was done as an Exterior Fixture and is used in concert with a "Pass-Thru". It could be converted to a "Custom Window" but since CA has not yet fixed the way the Custom Windows work, I have held off on doing that. It means the Window Schedule has to be "hacked" but otherwise it's easier than fighting with the Window Tool. Hopefully CA will fix the problems with the Custom Windows - introduced in X6 but never adequately finished. 45-P4035-20 Anersen Bay Window.calibz
  22. Not this time. Greg's answer is about as good as it's going to get - if you really need to detail it. Personally I would just add a note below the Finish Schedule.
  23. I have a couple of others playing with me at Encinitas Ranch 11:15 Thursday. Maybe next week.
  24. Probably true - unless you were going to do this quite a bit on different projects. Of course you could just edit the Window Label