Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have a series of lisp functions for layer manipulation in the form:
(defun c:YY_LAYnn ()
;do stuff here with LAYnn
)
where the code is identical but for the layer name.
I would like a single generic function where the layer name is passed as an argument, like so:
(defun c:YY ( LAYnn )
;do stuff here with LAYnn
)
How would I invoke this from the command line or toolbar button?
Solved! Go to Solution.