Message 1 of 6
Not applicable
12-01-2019
09:23 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello.
I have a little bit of code so far that runs the eTransmit function, creating one zip folder for one drawing.
I want to create one zip folder for MULTIPLE drawings, from a list. I have another little bit of code that generates this list.
Is this possible to do with autolisp?
Code 1.
(defun c:etrans nil (COMMAND "QSAVE" ) (command "-etransmit" "ch" "ACAD 2013 REFERENCE" "C" (strcat (getvar 'dwgprefix) (vl-filename-base (getvar 'dwgname)) ".zip")) (princ) )
Code 2.
... (setq dlist (GEN-BU-GETFILES "Select Drawings" "" "dwg"))...
Solved! Go to Solution.
|