Message 1 of 10
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I have the lisp below to insert a symbol, what I cant figure out is how to get the block to insert on whatever the current layer is. Currently it comes in on the layer of the block. I would like to leave all blocks on layer 0 (Zero) in their respective drawings, and have them insert in working drawing on whatever the current layer is set to.
(defun c:symbolsevergreens () (command "insert" "PATH/Evergreens.dwg" (getpoint "\nSelect insertion point: ") "1" "1" "0" ) (command "explode" "last") (princ) )
Any help would be greatly appreciated.
Solved! Go to Solution.