Code:(setq MylayOuts (layoutlist))
Registered forum members do not see this ad.
How can output a list of my layout names? I need this to create a 'plot all layouts' lsp. Can't use Publisher as it can't run within my custom data base!



Code:(setq MylayOuts (layoutlist))
ResourceCAD.... the Resource for your CAD Solutions
Registered forum members do not see this ad.
Here is a text file output.
Code:(defun c:tabs->prn (/ fn itm) (if (setq fn (open "Tab Names.txt" "w")) (progn (foreach itm (layoutlist) (write-line itm fn) ) (close fn) ) (prompt "\nFile 'Tab Names.txt' created.") ) (princ) )
Bookmarks