Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MintJulep 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
Joined
Sep 13, 2000
Messages
38
Location
RS
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
 
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

Back
Top