Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I just intend to move what is in layer 0 and Defpoints (layers that always exist in the tables where I work) to a new layer called "00".
to do this i intend to use an .lsp file
I don't want to have the layers selected as I already know the names. even if the program repeats itself 2 times, I don't care.
to create and make the new layer "00" active, I have found that it is sufficient to do the following command:
(defun C:PFB (/)
(command "_-layer" "_n" "00" "_c" "252" "00" "_s" "00" "")
)
ps. i'm using a non-English version, that's why there are "_" before each command
Solved! Go to Solution.