×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

Draworder is unruly

Draworder is unruly

Draworder is unruly

(OP)
Win2k ACAD2ki

In normal everyday 2d drawings where Layouts are used, we find that if you access Mspace from within the Layout, and apply Draworder | Back  to, say, some bhatch shading, then the next command you use puts the shading back on top.  It seems as though you have to Draworder your shading entities 3 times to get it to "take".  REGEN or REGENALL don't fix it as it does in other cases.  Two operators have the same difficulty.
   
All help is appreciated . . . Rocky

RE: Draworder is unruly

You could try adding this as a lisp routine

(prompt "\nType H2B to sink all hatching")
(defun C:H2B (/ ss)
  (setq ss (ssget "x" '((0 . "HATCH"))))
  (if ss
    (progn
      (setvar "cmdecho" 0)
      (command ".draworder"  ss "" "b")
      (setvar "cmdecho" 1)
      );progn
    );if
  (princ)
  );defun

Good luck.

RE: Draworder is unruly

(OP)
Thanks, surveyor101.   Before I try the ALISP program that you posted, I would like to know if you think that this program will circumvent the problem we are having manually performing Draworders?
   It sort of looked like it just automated what we are doing by hand, but what do I know>>> (g)

Thanks . . . Rocky

RE: Draworder is unruly

You are correct about Survey101's routine, it may just speed up the process, if it works.  Hatches and blocks are problematic with draworder. I think you'll have better luck if you "bring to front" those items you want over the hatch. The manual way to bring to front, which seems to be more reliable, is to copy items in place, then delete the "previous" items.

RE: Draworder is unruly

(OP)
Ohhhh . . . now I get it.  Draworder is one of those commands that works on snowy Tuesdays on years that have two or more Friday the 13ths, but only on leap years.  

Makes sense.

Typical AutoCAD

Thanks, guys . . . Rocky

RE: Draworder is unruly

The FIZBIN factor. Yep. I've encountered it in AutoCAD many times!
Seriously, The bring to front aproach mentioned above (copy in place and delete original) is the only aproach to this particular problem I've encountered (and THAT with mixed success). Oh well.
Good luck,
C. Fee

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources