Are they all in the same directory?
If so, you could just get a reference to that directory and then iterate it's contents.
If they are in different directories, then you will have to navigate them anyway, just like if you were manually doing it.

Registered forum members do not see this ad.
I have a basic lisp routine that allows me to insert .jpeg files into a cad drawing one after the other without having to reselect the command each time and it arranges them in a row, however i still have to select one image file at a time, does anyone know if it is possible to be able to select multiple images to insert and if so have any clues/ideas as to how the lisp would look?
Thanks in advance.
Luke




Are they all in the same directory?
If so, you could just get a reference to that directory and then iterate it's contents.
If they are in different directories, then you will have to navigate them anyway, just like if you were manually doing it.






Registered forum members do not see this ad.
Returns a list of JPG files in C:\TempCode:(vl-directory-files "C:\\temp\\" "*.jpg" 1)
Loop your current code through this list.
Bookmarks