Angelo2449
Guest
Hello everyone,
I would like to write a little program that extracts the name and path of an image once
selected.
I wrote the first part:
I need a hand to finish it!
Thank you.
I would like to write a little program that extracts the name and path of an image once
selected.
I wrote the first part:
Code:
(defun c:estraimm (/ image ed1 en1)
(setq image nil)
(sing)
(= image nil)
(setq image)
);
(setq ed1 (entget)
(setq en1 (cdr -1 ed1))
(princ "\ned1 xxxxxxxxx ")
(princ ed1)
(princ "\n")
(redraw e1 3)
);
Thank you.