marklcc Posted February 26, 2015 Share Posted February 26, 2015 How do you change the default floor label from 1st floor or 2nd floor? I want to set a default label " First Floor Plan" I know I can change them in layout with a custom label, but you should be able to set them before they go to layout. You can't edit floor plan information in the project browser. Anyone have a solution? Link to comment Share on other sites More sharing options...
CJSpud Posted February 26, 2015 Share Posted February 26, 2015 What program are you using? Link to comment Share on other sites More sharing options...
marklcc Posted February 26, 2015 Author Share Posted February 26, 2015 Using x6 Link to comment Share on other sites More sharing options...
Joe_Carrick Posted February 26, 2015 Share Posted February 26, 2015 Mark, You could use a macro for the Layout Box Label to construct the desired name. Basically the macro would check the 1st character of automatic_label and if its 1 then return First Floor Plan, if it's 2 then return Second Floor Plan, etc. The macro could be "brute force" or it could be done with a bit more elegant programming. Chief really should allow us to change the name of the Floor Plans in the Project Browser. Link to comment Share on other sites More sharing options...
Joe_Carrick Posted February 26, 2015 Share Posted February 26, 2015 Here's a macro that you can add to your Layout and use for the Label of Floor Plan Layout Boxes. FLOOR NAME Arr = [" ","First","Second","Third","Fourth","Fifth", "Sixth","Seventh","Eighth"] Arr[ automatic_label[0].to_i]+ " Floor Plan" Context = OWNER Floor Name.zip Link to comment Share on other sites More sharing options...
marklcc Posted February 26, 2015 Author Share Posted February 26, 2015 Thanks Guys Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now