Labeling framing members?


foxriver32
 Share

Recommended Posts

All this time I've manually added labels to framing views.

 

I figured there has to be a way to get chief to automatically add some framing member labels. For instance, on roof framing. labels for valleys, hips, ridge ...common rafters ....something like "2x6 common rafters 16"oc" or some sort of variation. I've googled, watched videos and checked the manuals.... just can't find out how.

 

Running chief x9

 

Thanks in advance,

 

Scott

Link to comment
Share on other sites

11 hours ago, gelbuilding said:

Ask Joe Carrick.

 

He has great macros that make it all simple.

George Wall Detail Sample.JPG

 

Thanks George, thats exactly what I need. Would be nice if it could be used on every 4th or 10th or 7th member, but I could use something like that.

 

Does he sell these?

 

Thanks again

 

Scott

Link to comment
Share on other sites

FYI---

You may want to "look before you leap"?

Using a label on every framing member will needlessly clutter the plan. Also, Chief does not label valleys properly and there is no way to label every other member automatically. i suggest you first check out the available data first. If you only want to label a few representative members do so manually.

You may just want to use the new framing schedule and select the members you want or use the manual macros in the label tab. "Standard Freebees"

  • Like 1
Link to comment
Share on other sites

3 hours ago, foxriver32 said:

 

Thanks George, thats exactly what I need. Would be nice if it could be used on every 4th or 10th or 7th member, but I could use something like that.

 

Does he sell these?

 

Thanks again

 

Scott

 

Scott,

 

Not trying to discourage you from buying macros from Joe (or myself for that matter) but just FYI, you can actually get much of what you're after by just group selecting the desired framing members and placing the %length% macro in the label.  Just make sure your framing labels and header labels layers are turned on and you should end up with something like this...

5aced235520a3_Framingdims.thumb.jpg.fd31d689e83735b1a7f09259f4eff45d.jpg

Link to comment
Share on other sites

Gerry,

Joe`s macros also allocates a component list for all the members in the individual walls.

I had given these lists to our carpenters and they love it because they can cut their frames quickly with great accuracy.

Also great for ordering material

Link to comment
Share on other sites

2 minutes ago, gelbuilding said:

Gerry,

Joe`s macros also allocates a component list for all the members in the individual walls.

I had given these lists to our carpenters and they love it because they can cut their frames quickly with great accuracy.

Also great for ordering material

 

The standard schedules actually do that same thing...

Schedule.thumb.jpg.5ab837b727bba9d4bc256b02f5d93618.jpg

  • Like 1
Link to comment
Share on other sites

i totally agree with Michael. if you have x10 ( I suggest that you should), you should also look at the material list-- specially the framing drop down fields. Probably more useful -- and free. Sometimes the more complicated is not necessarily better.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

  • Member Statistics

    33801
    Total Members
    9156
    Most Online
    chiefuserand
    Newest Member
    chiefuserand
    Joined
  • Similar Content

    • By gravattedesign
      Assistance please.
      How can I set imported drawings from the PLAN FILE to have NO BOX BORDER and NO LABEL when sent to Layout?? I have to turn these off with every import to layout. Settings in layout doesnt help since the Template Sheet border in LAYOUT, 0 sheet, uses LAYOUT BOX BORDERS layer for default border line work for that sheet.
       
      Thanks for any help or insight for best practices. PIC attached of a recently imported Elevation (top Left) that illustrates the box border and Label

    • By Allen43
      I have returned to this forum once again in seek some help with ruby and macros.
       
      I have been working on a macro to automate cabinet labels. So far I have a mostly working macro, but I feel like my hands are tied and my eyes are closed. First of all the documentation on chief implementation of ruby and its capabilities it really lacking. And second, I don't have the Ruby terminal. I think this is because I am running Interiors, but am not sure as all Chief says is that there is limited use of Ruby in this version.
       
      Anyways, right now I would love to have a list of all callable object attributes. I honestly don't even know if that is the right name for what I am looking for. I am trying to find a list of what info I can scrape from a cabinet. So, what can I put after obj. (ie. obj.width, obj.type)? I think I could find this by running the selected.names command in the terminal, but I have no way of knowing.
       
      This is my current macro. It is built from parts of a macro from @MarkMc and whatever I have been able to come up with from random trial and error. If you see something I could improve on, I am open to suggestions as long as they have a good explanation with them. Thanks in advance!
       
      Macro:
      obj = owner
      obj = referenced unless referenced.nil?
      obj.depth
       
      type = obj.type.to_s
       
      nf = NumberFormatter.new
      nf.unit = 'in'
      nf.use_fractions = true
      nf.show_unit = false
      nf.apply(obj.depth)
       
      standard_size = 24.0 if type == 'base_cabinet'
      standard_size = 12.0 if type == 'wall_cabinet'
      standard_size = 24.0 if type == 'full_height_cabinet'
       
      depth = nf.apply(obj.depth) if obj.depth.to_f != standard_size
       
      standard_size_height = 36 if type == 'base_cabinet'
      standard_size_height = 0.0 if type == 'full_height_cabinet'
       
      height = nf.apply(obj.height) if obj.height.to_f != standard_size_height
       
      width = nf.apply(obj.width)
       
      nomen = 'B' if type == 'base_cabinet'
      nomen = 'W' if type == 'wall_cabinet'
      nomen = 'T' if type == 'full_height_cabinet'
       
      hinging = owner.door_swing
      label = ""
      label << nomen << width.to_s << height.to_s << depth.to_s << hinging
       
      p label
       
    • By Allen43
      I am new to Chief but so far I love it. Far better than my previous software. So far, the only problem that I have had is using macros to create a custom label for cabinets.
       
      All I am trying to do is get chief's labels to match my manufacture nomenclature. I know I could manually change it on every cabinet, but that seems like to much work and honestly a waste of time. So could someone give me some help. Either a bit of a guide on custom macros and some recourses and documentation (which I, for the life of myself, can't find), or maybe a working-ish or example macro.
       
      Some examples:(chief nomenclature, needed nomenclature)
      3DB24, B3D24
      U242484L, T2484L
      FHB24L, BF24L
       
      Thanks in advance for the help! And if I didn't give enough information or if there is a better way to go about this, please let me know.
       
      Oh, almost forgot. I am running Interiors x14.
    • By kylejmarsh
      Somewhere along the way here I found a good roof label macro and modified it to fit my use - which was great up till now that there seems to be a roof label fill which is background color (white) but it covers up the arrow for the roof plane itself. Does anybody have this issue yet and how can we control the label background on a roof label? I haven't been able to find it.

    • By SteveByars
      Some objects, like GFCI's, toilets with a handle, or kitchen faucets with a lever control are tedious to locate. When inserting them into a plan they are located based on the center of the symbol, including the 'GFCI' label or the side handle. Is there a way to redefine the 2D insertion point of these symbols?  Thanks!