Joe_Carrick

Members
  • Posts

    11648
  • Joined

  • Last visited

Everything posted by Joe_Carrick

  1. I don't think there's any way to do that automatically. I'm assuming you would have different PDFs on different pages at different locations on the pages. A mask on a default page would always be at a specific location, not relative to the PDFs.
  2. Larry, I'm assuming you want to have some text over-writing an area of the PDF. If that's the case, just use a text block with a white fill. That's how I do it.
  3. Search in "3D Warehouse" for Models "Clothes Line". There are a lot of them. btw, I haven't seen those used here in California, USA for about 50 years. We had them when I was still living in my parent's house before I went to college. Now almost everyone has an electric or gas clothes dryer.
  4. This would be IMO a very difficult programming task. Chief's walls are very special objects which define the vertical limits of rooms. If a sloped window wall is what's wanted I would simply create a symbol using a post to ceiling glass panel railing, defined as a geometric shape. I would set a z stretch plane at + 12". Then I would place it in the plan and rotate about the y axis to the angle desired. I would make the wall where I place this as a single layer transparent wall. Perhaps if Chief were to create a "Window Wall" tool with the ability to specify a slope it could work - but it would need to also define the room as other than contained simply in a vertical wall.
  5. if you use Wall Types set as "Partition Walls" they won't cut the finish flooring, intersecting walls or ceilings. I'm using X15 so I'm not sure if that's the same in X10 - but it should be.
  6. Where was the macro assigned in the Style Pallet? If it was in the Components you can: Open the Library Object Select Open Object Components and make your change there. I don't know of any other way to get a macro into a Style Pallet.
  7. My wife is coming with me and we have booked a suite at the Hampton Suites next to LePeeps. We have other friends that live about 30 miles north which we will also be visiting.
  8. So in X15 you can select the object in the library and edit its macros by right clicking on the library object and selecting "Text Macro Management". My methodology is to copy/paste the X15 macro content into the existing macro and rename it as needed.
  9. I'm not referring to your template plans. There shouldn't be any problems with plans created using X15 templates that are using X15 macros. The problems would only occur when a Library Object created in X14 (or before) with embedded macros is added to an X15 plan. Those macros wouldn't be the same as the ones in the plan and so might be incompatible.
  10. It was almost all related to NVPs in macros for openings (doors & windows). Also since I rewrote almost all of my user macros for X15 and renamed some of them to X15 conventions (no spaces in macro names) there were a lot of macros that were no longer valid in those plans. If you don't use many macros in your plans you shouldn't have too much problem. That's not my way of working. For example, I have macros for openings (doors and windows), walls and roof planes which provide different labels in plan views than in elevations & sections. Almost everything in my plans and layouts are annotated my these very comprehensive macros.
  11. I've attached a set of macros that can be used in "Text Macro Management" to display the available Global Variables and the available NVPs for any selected object. These can be very handy to determine what information is available to be included in labels, schedules or user macros. Enjoy Global & Object Porperties.json
  12. There are similar "layers" NVPs for Walls, Floors, Ceilings & Material Regions. Check the "Object Properties Macros" I posted Global & Object Properties Macros - Tips & Techniques - ChiefTalk Forum (chiefarchitect.com)
  13. For the Plan View, %owner.layers[0].material_data.description% placed in the Roof Plane Label should do it. -or- %owner.layers[0].material_data.description% -over- %owner.layers[1].material_data.description% if you also want to indicate the underlayment. To get it in the Schedule you will need a custom field - but the same macro should work.
  14. Some notes about moving to X15. Some X14 macros won't work in X15 due to NVP changes. If you have a project that was started in X14 or before - be careful not to open and save it in X15 Make sure you only use X15 compatible macros in new plans User Library Objects from prior to X15 may have imbedded macros that won't work in X15 Those should be modified to be X15 compatible. IOW, check the differences and make sure you account for them. I had one project that was almost completed and I inadvertently opened it in X15, made some changes and saved it, overwriting the X14 version. It took quite a lot of time to make the corrections so everything worked properly.
  15. You have to select the drawer itself in the front/sides/back face panel.
  16. My problem with using Schedules for this is that I can't specify an area to be in more than one Schedule. Basically I have many closed Polylines all on floor level 1 I want all of them to be in Schedule A some of them in Schedule B some in Schedule C etc. I need to display totals for each Schedule as well as some calculated totals (added, and/or subtracted) Schedules currently just don't have the flexibility I need.
  17. What happen if you edit one of the existing walls?
  18. Not mine, not by a long shot. There are a lot of mistakes in this macro. Some NVPs in X15 have different names than in X14, including the fact that the Base Cabinets type is now "Base cabinet". it would be better to just assign: nomen = obj.type[0].upcase which would pick up B, W, F depending on the cabinet Also, the line hinging = owner.door_swing should be hinging = obj.door_swing In my macros I use comprehensive error handling by use of: begin some code... rescue exception code... end so that my macros will never result in "evaluation error"
  19. Regardless if it's been reported by someone else or not, go ahead and report it. Squeaky Wheel.............
  20. These symbols have some serious problems in terms of how they open and what's required in terms of casings/trim. You really need to look at some actual manufactured bookcase doors to see what they really need to be. Also, the 2D Plan View CAD is totally wrong unless you specify about an 8" thickness but it should also be consistent with the wall thickness or visa-versa. The problem with that is Chief limits the door thickness to 4" I would be inclined to make my own symbols for these - but probably start with those in that catalog or "a wall cabinets w/o doors" and modify as needed. The advantage with using a cabinet is that you can have "face frames".
  21. Here's a couple of pics pic of some panels I've used. The panels were modeled as solids and converted to symbols. The wall is a single thickness "Caulk". Each panel can be resized as needed.
  22. If that wasn't so it would be difficult to maintain head height clearance.
  23. There's a formula for comfortable risers/treads: 2R+T = 24"-26" I prefer to keep the risers < 7" and I adjust the treads so that the result of the formula = 25". Generally my risers will be about 6.75" and the treads will be 11.5" but it really depends on the floor to floor height.
  24. Since you must have SSA - call Support.
  25. I use a timer for most things like this. Periodically I clear the hash (don't like using arrays) and then allow all the macros to update the hash and sum the data. Typically I set my timer to about 5 minutes so I'm not updating to often. The macros just skip all processing until the timer has reached the update interval. It's also possible to have a macro that's only displayed on demand to clear the hash. That way you can display it only when you want to force an update.