-
Posts
2856 -
Joined
-
Last visited
Content Type
Profiles
Forums
Gallery
Everything posted by ACADuser
-
I have a 4 story complex house and with the layout file open, in plan file it takes 8 seconds to switch from floor plan to framing plan. When I close the Layout file it takes one second. So why is Chief so slow when the layout is not displayed at all? Nothing is happening in the layout. Another slow down is with lots of notes. The plan slows way down. Wish we could turn Notes interaction with the schedule when panning and zooming.
-
Thanks guys. I think your suggestion, Michael, will work for me!
-
OK, so you can select a room & hit the room molding button again to produce a 2nd room molding polyline. But I want to have a setback for each door opening or do I need to manually move the molding back for each door? See attached, the A is the auto side & the M is where I moved the molding end point?
-
OK I found that the room def holds the molding default for that room type. So I'll change the Hall default room. I noticed you must add back the base molding when you do this but that complicates the offset needed on the handrails. I guess you need 2 molding polylines for each molding?
-
I have to add room moldings to several hallways How / where is the molding default set? Or how do I use the Object Eyedropper to copy a room molding? How do you get the molding to be wider than the door opening + casing?
-
I get it, you just have to live with the rectangle around the room number. A bit clunky but I can live with that for now. Thanks so much for the education. And Joe, I appreciate your input too.
-
Micheal No reason except I have not figured out how to do it & display the room number in the room. I'm messing around with it now.
-
Joe, Are you able to start the room number with 100 and not 101? I did use a Note Schedule.
-
It appears that strings are OK but as soon as you turn the room number into an interger it breaks. schedule_number.to_i
-
I'm not understanding this behavior. This works, it updates the schedule begin room_num = owner.schedule_number rescue "X" end But this does not work, it shows 99 in the schedule field begin room_num = schedule_number.to_i + (floor_number*100) -1 rescue "X" end
-
That's how I learn, from my mistakes. Updated code but still no joy in the schedule. # Macro by ACADuser # Return Room Schedule Note Number plus 99 for Room Numbers starting at 100 on floor 1 # returns 200 on floor 2 etc. begin obj = owner room_num = obj.schedule_number rm_num = (room_num.to_i + (floor_number*100)) rm_num.to_s rescue "X" end
-
I was working yesterday but this is playtime for me. Although this code-breaking is very frustrating because I know nothing about Ruby. Off to the dog park for some real playtime with my best friend. Later
-
As I try variations of the code I get 0 or 99 or 100 in the schedule. The Note in the room displays the correct result. The correct room code string appears in the Result Box in the Macro Edit dialog. There must be something I'm getting wrong in the ruby code.
-
Attached is my test plan. I can not get your code to work in the schedule. It works in the NOTE. # Macro by ACADuser # Return Room Schedule Note Number pluss 99 for Romm Numbers starting at 100 on floor 1 # returns 200 on floor 2 etc. referenced ? obj=referenced : obj = owner begin room_num = obj.schedule_number rm_num = (room_num.to_i + (floor_number*100)) $Name = rm_num.to_s rescue "X" end Rm Numbers.zip
-
Michael Thanks for that info. I had not thought through all the possibilities. I only have 82 rooms in this building & only one floor. But will use one of your algorithms. I am using a NOTE Schedule with a custom field but currently, the schedule displays 99 for all the room numbers. I thought I had it working at one point.
-
Well, I spoke too soon. It updates in the NOTE but not in the schedule. It now displays 99 in the schedule. Yes, I had a custom field I thought I could use in the schedule. Back to the drawing board.
-
Well, I finally conquered my issue with room number that needs to start with 100 and not 101. Using a Note in each room and a Room schedule, the following macro, my first real Marco BTW, will display room numbers per floor starting at 100, 200 etc. # Macro by ACADuser # Return Room Schedule Note Number plus 99 for Romm Numbers starting at 100 on floor 1 # returns 200 on floor 2 etc. referenced ? obj=referenced : obj = owner begin room_num = obj.schedule_number.to_i room_number = (room_num + 99 * floor_number).to_s $Name = room_number rescue "" end
-
Just use the Change Hinge Side Tool
-
Faded Printout (both as a PDF and as a paper document)
ACADuser replied to Doug_N's topic in General Q & A
I get pdf files that fade so I have to print them separately with an Autocad created border & use a PDF editor to replace the Chief output pdf page that was designated for that pdf. It seems that there is no easy fix for Chief. -
OK I see now. I would need to choose "Custom Color" for it to work. I'll report your findings. Thanks
-
Sorry, I miss spoke. I meant to say "Fill Transparency" It does fill the new rectangle but with no transparency.
-
I did not change any properties of the rectangle on the right. Is there a Preference for polylines?
-
But the Object Eyedropper does not offer the Fill as an Option.
-
Oh wow, I guess I forgot the fill eyedropper! Thanks, Michael. Wonder why the fill properties are not added to the Object eyedropper?
-
PLan file attached with 2 rectangles. The left one is filled 90% and needs 90% solid fill on the right one. Untitled 1.plan