Joe_Carrick

Members
  • Posts

    12059
  • Joined

  • Last visited

Everything posted by Joe_Carrick

  1. Out here in LALA Land we virtually can't build a CMU wall without lots of steel and solid grout. I have seen some "Garden Walls" that had little or no reinforcing but those usually get flattened the first time an earthquake occurs.
  2. X7 is at least 4, maybe 5 years old. I'm pretty sure the cable railings weren't available for stairs that far back. The key is that the "Panels" section didn't exist.
  3. If you want a Water Mark - why not just use that tool?
  4. Hi Joey,

    Import the attached file using Text Macro Management.  Then just put the macro %opening_plan_label_rich% in your door and window default labels.

    hth - enjoy

    Openiing Labels for Joey Martin

    1. joey_martin

      joey_martin

      Thank you very much. I really appreciate it.

    2. joey_martin

      joey_martin

      That looks like the same one I already have and have tried to use. It adds an extra foot to the door heights. Shows doors as 3'0"x7'8"

  5. framing_area should be to the outside of the rafters and rough fascia surface_area should be to the outside of the finish fascia and possibly shadow-boards
  6. I like this one much better: #================================================= # Joe's Macro Service # Ruby script: _global Variable Values # Copyright September 22,2019 #================================================= #================================================= # This macro lists all the $Global variables and their current values #================================================= referenced ? obj = referenced : obj = owner if obj.respond_to? "object_type" and obj.object_type.to_s.upcase.include? "TEXT" result = "" else arr = Kernel.global_variables.sort i = 0 j = arr.length - 1 result = "" while i < j x = arr.id2name y = eval(x) result = result + x + "\t = " + y.to_s + "\n" i = i+1 end end result
  7. Marque select the text box. Then you should be able to block it.
  8. Block it then add to Library. If the text contains a macro then you just edit the macro.
  9. So now I've found that your macro does in fact get all the roof planes as separate in the $tree hash. I'm not sure exactly how that's working but it's good. The bigger problem is that the $tree hash grows drastically with each edit of the plan. It needs to be refreshed from nil whenever an edit is done.
  10. Brown Tiger, How do you get $tree to contain a different hash key for each roof plane? My experience shows that the object_id in Chief is not reliably different for different roof planes. IOW, I am pretty sure the data for each successive roof plane will overwrite the previous. I would love to be proven wrong.
  11. Joey, Do you want the "X" or "x" ? Is rounding to the nearest inch also acceptable? This is a pretty easy one for me and it can be placed in the default door and window labels.
  12. Here's another way to deal with this sort of problem. Add these lines to your macro: #================================================ # Refresh if more than 2 seconds has elapsed #================================================ if $MyGlobalRefreshTime.nil? $MyGlobalRefreshTime = Time.now end if Time.now > $MyGlobalRefreshTime + 2 $MyGlobal = nil $MyGlobalRefreshTime = Time.now end Then whenever you hit the F5 key twice the macro will execute, setting the $Global to nil which will cause the macro you have to set it to do its job. I use this little trick to update hashes when I make changes.
  13. Rene, I'm going to assume that your macro is using a $Global variable. If you have not closed Chief then the value is a holdover from the previous plan. One solution is to clear the $Global open the Ruby Console - you can leave it open since it's a non-modal dialog type the $Global variable name and set it to nil ---- $MyGlobal = nil <enter> press the F5 key twice to force the macros to execute. The macro in your current plan will update the $Global variable
  14. Yes, those should be there. I notice that your macro is now working. But of course the only thing that's being displayed is the "automatic_label". $tree is a Hash that contains the other information. That's not displayed because it's not the last thing in the macro.
  15. What are the "?" doing in the last two lines of your macro ? They shouldn't be there
  16. I use a Polyline ( P/L LineStyle ) for my lot boundary --> Property Area I use a Polyline ( S/B LineStyle ) for my setbacks --> Buildable Area Other Polylines ( Named Layers ) define various object types. I also use the demolition, existing and new (my own creation) to identify how building areas are to be treated. I have a single macro in the Polyline Labels that accumulate the areas into a Hash which is then accessed by several other macros to display the data in tables with totals.
  17. No, it just hides the Terrain and of course the Terrain Feature at that location. Basically it graphically removes them where the Symbol or Building exists. From a logical standpoint It seems to me that the area should be reduced by the size of the object.
  18. I place a s Symbol (or a Building) in an area where there's a Terrain Feature (Sidewalk, Driveway or Stepping Stone) it cuts a hole in the Terrain. However, the reported area of the Terrain Feature doesn't reflect the change caused by the hole. Shouldn't that are be reported as reduced?
  19. I also like Rene's method. I made a few tweaks for my own purposes: Created a 8" concrete stem wall with a thin white plaster interior surface - added to Library Created moldings for both the cove base and the tile coping - added to Library Use a thin tiled cove molding for the water-line (1/4" thick x 6" high) Use a Room Ceiling for the water surface This eliminates the need for any additional molding polylines and just moving the walls results in everything being adjusted accordingly.
  20. I am available and I live in San Marcos. Please PM me with your contact information.
  21. Glenn's right. It requires some Ruby macros. I have a set of macro's that get and display the areas of each roof planes. It wouldn't be very difficult for me to modify and display the data as you want. I would probably store the output in a CAD Detail but it could be sent to Layout on any page you want.
  22. It's probably better to ask "Can this be done?" But essentially it's only limited by what data CA has and will in the future expose as object attributes that Ruby can use. It can't be used to actually edit the model but for annotation purposes almost anything is possible.
  23. Thanks for the video. I think I will set up your method so I can use it in the future. Just need to get all the pieces together and organize in my user library. Some questions: What did you use for the Pool Deck (slab, stepping stone, etc) so that it automatically adjusted when you changed the size/shape of the pool? Couldn't you use the "ceiling" as the water surface instead of a molding?