Once you isolate your layers you could use something similar to this
If you want to select everything on the layers prefixed with AA_ , this might be easier... you don't need to isolate the layers firstCode:(setq ss (ssget)) (command "dxfout" "" "o" ss "" "v" "R12" "" )
Code:(setq ss (ssget "X" '((8 . "AA_*")))) (command "dxfout" "" "o" ss "" "v" "R12" "" )




Reply With Quote
Bookmarks