Command: ept Select object: ENTER NEW TEXT: INITIAL CHECKLIST OF PART XXXXXXXXX I would to Select object: ENTER NEW TEXT: INITIAL CHECKLIST OF PART BATTERY FIXER But problem is "INITIAL CHECKLIST OF PART XXXXXXXXX" can't change by user,how to become changeable? ; ept is stand for edit part text ; Design by Ade Suharna ; 10 November 2004 ; program no. 139/11/2004 ; edit by (defun c:ept (/ en ent opt ed) (setq en (entget (car (entsel)))) (setq ent (cdr (assoc 1 en))) (setq opt (getstring T (strcat " ENTER NEW TEXT: " ent))) (setq ed (subst (cons 1 opt)(assoc 1 en) en)) (entmod ed) (princ) )