7o7 Posted July 22, 2014 Posted July 22, 2014 There is something wrong with your file 221.idw.dwg , you "audit" it (Files > Drawing Utilities > Audit) and will be fine. About the sorting, change the defun sort to this: (defun sort(l) (mapcar 'cadr (vl-sort (mapcar '(lambda(x) (list (atoi (vl-list->string (vl-remove-if-not '(lambda(y) (<= 48 y 57)) (vl-string->list x)))) x)) l) '(lambda(m n) (< (car m) (car n))))) ) And what you want to set spacing for? we don't know the dimension of inserted file frame, we can only put them side by side. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.