像这样的?
- (defun c:TesT (/ st ss)
- ;; Tharwat 25.12.2014 ;;
- (if (and (/= "" (setq st (getstring t "\n Specify new value :")))
- (princ "\n Select Attributed blocks ...")
- (ssget "_:L" '((0 . "INSERT") (66 . 1)))
- )
- (vlax-for x (setq
- ss (vla-get-ActiveSelectionSet
- (vla-get-ActiveDocument (vlax-get-acad-object))
- )
- )
- (mapcar '(lambda (a)
- (if (eq (strcase (vla-get-tagstring a)) "DR_DATE")
- (vla-put-textstring a st)
- )
- )
- (vlax-invoke x 'getattributes)
- )
- )
- )
- (if ss
- (vla-delete ss)
- )
- (princ)
- )(vl-load-com)
|