@k005 wrote:
@pbejse
well then. my choice: Mark Wahlberg
and Max Payne
😃
Marky Mark is not of help. Try this instead.
(defun c:checkmark ( / pt *error* oldstyle)
(defun *error* ()
(setq oldstyle (getvar 'Textstyle))
(princ)
)
(setq oldstyle (getvar 'Textstyle))
(setvar 'Textstyle "Onay")
(while (setq pt (getpoint "\nSelect check mark point >"))
(entmake
(list
(cons 0 "TEXT")
(cons 8 "Onay")
(cons 100 "AcDbText")
(cons 10 (trans pt 1 (trans '(0 0 1) 1 0 T)))
(cons 40 (* 2 (getvar 'Textsize)))
(cons 1 "\U+00FC")
(cons 7 "Onay")
(cons 62 100)
(cons 50(angle '(0 0 0) (trans (getvar "UCSXDIR") 0 (trans '(0 0 1) 1 0 T))))
(cons 100 "AcDbText")
(cons 210 (trans '(0 0 1) 1 0 T))
)
)
)
(setvar 'Textstyle oldstyle)
(princ)
)
Miljenko Hatlak

Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.