Alaskan_Son

Members
  • Posts

    12005
  • Joined

Everything posted by Alaskan_Son

  1. Might your confusion have anything to do with the fact you're quoting from an entirely unrelated thread? The thread I was responding to is waaaaaaay over HERE...
  2. It doesn't matter. Functionally speaking they're pretty much the exact same thing. Main difference is really just that you can give your own Custom Fields a more appropriate name.
  3. Yup. That would do it. Soffits are cabinets. You're just mounting your sconce to a cabinet which works just fine.
  4. Looks like that's probably a railing wall. If so, you're just attaching it to a wall.
  5. Place your fixture on a wall or cabinet, click Open Symbol>Options>Floor Mounted, and then move it to wherever you want.
  6. Simple text macro placed into an Object Information Field. Using the #String.split method along with the #Array[] method for example you could just use %room_name.split("/")[0]%: room_name = "Dining/Balcony 201" room_name.split("/")[0] #=> "Dining" ...assumes you don't use the forward slash in your room names though. If you do, the macro would need to be a little more complex.
  7. Are you talking about the same thing that's happening with Patio, Roof at Stairs, and Rear Entry?
  8. Don't forget that we can also control the Schedule Number Start these days.
  9. Just put any new windows onto a separate schedule.
  10. Just to reiterate… If you're using the Orthogonal Movement Method, then the angle should be parallel to or perpendicular to the associated edges, otherwise you'll be using the Allowed Angles (assuming your Angle Snaps are toggled on). Try turning on your Angle Snap Grid while you're going through the exercise and I think you'll see what I mean.
  11. It looks to be working exactly as I would expect Rene. The Movement is behaving entirely differently depending on whether you drag with your left mouse button or right.
  12. That sounds pretty weird. Can you make a quick video showing this? Try move a single rotated line both ways and then a rotated rectangular polyline both ways. In addition to using the right mouse button to activate the alternate behavior, also try just using the Alt key to activate the behavior.
  13. Don't remember. I probably just group selected them and changed them all to match each other though before checking if that material was still being used.
  14. There's an automatic behavior that will rotate the selected edge counterclockwise as you make changes to the dimensions, but its a little hit and miss as to whether or works or not, and you still have to click on the desired dimension. Is that what you're thinking of?
  15. It seems to me like you may just have a fundamental misunderstanding of how the program works with regard to its associative dimensions. You don't change the dimension line, you move the object. That means you must select the object that you would like to move and not the dimension line itself. Once you select the object, then you can click on the desired dimension (assuming the dimension is actually associated with/connected to that object). As a side note, if you're trying to select an object in a busy area, it also helps if you have the same tool type activated as the object type you're trying to move. If for example, you're trying to select the Point Marker that you dropped with your Point To Point Dimension tool, you want to have the Point Marker tool activated an not the Dimension tool. You can also simply switch to the Select Object tool which will select the top object in the draw order and then hot the Tab key to Select Next until you get to the desired object. Again though, you select the object and then edit any one of the associated dimensions.
  16. I'm curious if anyone will be able to find where the "Maple 5" Plank-Natural" is being used. Seems like it might be hard-coded somewhere, maybe for Legacy purposes. I don't know, just a guess. I gave up trying to find it.
  17. Try dragging and hitting tab. First with your left mouse button, and then again with your right mouse button. The left button is your Primary Movement Method and can be specified via Preferences>Edit>Behaviors>Primary Movement Method. The Right button is your Alternate Movement Method. One will be Orthogonal (the one you want), and the other will be Polar (the one you probably don't want). Now when you start dragging and ht Tab, the Enter Coordinates Dialog will open up. This you DO want to change to Polar. You should see that the proper Angle is already set. You just need to enter the desired Distance and then click Enter. You can also get the Angle to properly populate using the Polar Movement Method so long as you have Angle Snaps turned OFF and Perpendicular Extensions toggled ON. You just have to watch for the Perpendicular Extension indicator. When you see it, hit the tab key and use the prepopulated Angle and your desired Distance as already mentioned above. BONUS TIP: You can also hold down the C key as you drag your line, and in doing so, simply use the Concentric Jump setting as set in Preferences>Edit>Behaviors>Edit Type>Concentric
  18. Should it perhaps be on the attic level when you place your vent?
  19. Make sure your correct floor is activated in your elevation view when you place the vent. You probably drew it on a different floor.
  20. + Various items in Electrical Defaults>Light, Black, and Mouse Wall Niche Defaults>Bone Roof Defaults>Skylight Frame>Dark Siding-6 Wall Type>Lap Siding
  21. Those all look like materials that would be used in either material defaults, wall type definitions or room type definitions. Post a copy of that plan though and one of us will take a quick look.
  22. Are you sure that you went through ALL your defaults? For example, did you check all your Room Type definitions?
  23. I still don't have a GPU that supports RTRT but IMO X13 is still completely worth it.
  24. @Chrisb222, there are no simple settings, especially since words like "Main" and "lower" are obviously subjective. I would suggest a simple text macro. One of these placed directly into an Object Information Field should do the trick: Using to_s and string.sub %floor_number.to_s.sub("0", "Lower").sub("1", "Main").sub("2", "Second").sub("3", "Third")% OR using hash[key] %{0 => "Lower", 1 => "Main", 2 => "Second"}[floor_number]% OR using array[index] %["Lower", "Main", "Second"][floor_number]% Side Note: Are you still on X12 like your signature says?
  25. That will work, but it might also come back to bite you. I would recommend you study what all those tools do. In particular, you just sent the object to the very back drawing group. Now if you place a rug underneath that table, it's going to cover your chairs. I would suggest more refinement in how you sort things in the draw order. Instead of clicking the Send to Back tool, consider clicking the Send Backward tool just to get it so that its either at the back if its current Drawing Group or so that it's just one group back.