Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Send back objects/layers 2

Status
Not open for further replies.

ZoranB

Structural
Sep 13, 2000
38
Two questions:
1. When I send object back (Tools/Send back) in Model space, that does not influence VPORTS. Why? Any solution?

2. Does anybody know of a lisp that sends whole layer back?

thanks
 
Replies continue below

Recommended for you

Dear ZoranB,
1- It sounds like you need a REGENALL command to update all vports.
2- The following code gets a layer name and sends all objects in the layer to back. The code defines a new command named LBACK.

(defun c:lback(/ lname ss)
(setq lname (getstring "\n Layer name: "))
(setq ss (ssget "x" (list (cons 8 lname))))
(command "draworder" ss "" "")
(princ)
)

Regards,
Farzad
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor