Mhmd Posted October 24, 2014 Posted October 24, 2014 I'm trying to get the name of an object with auto lisp. First a user will select an object and then I will get the name of that object for example: circle, rectangle, arc.... Here is what I have so far: (setq ss (ssget (prompt ".....Select required object..."))) (ssname ss 0) But this will give something like: "":( I want to get something like: "circle", "line"... Is this possible? Quote
hanhphuc Posted October 24, 2014 Posted October 24, 2014 I'm trying to get the name of an object with auto lisp. First a user will select an object and then I will get the name of that object for example: circle, rectangle, arc.... Here is what I have so far: I want to get something like: "circle", "line"... Is this possible? hi, mhmd welcome to forum. (cdr(assoc 0 (entget (car (entsel))))) try to look there are many examples codes in this forum. 1 Quote
BIGAL Posted October 24, 2014 Posted October 24, 2014 You can do the same in VLISP its a vla-get-name (setq objname (vla-get-objectname (vlax-ename->vla-object (car (entsel))))) 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.