home *** CD-ROM | disk | FTP | other *** search
- ;Set text Stlye by picking existing
- ;
- ; ********Patrick J. McKee, author********
- ; ****Copyright 1992, Power Key tm****
- ;
- (defun c:gs (/ a b c d)
- (graphscr)
- (prompt "\nSelect text to set style....")
- (setq a (entsel))
- (setq b (entget (car a)))
- (setq c (cdr (assoc 7 b)))
- (setq d (cdr (assoc 40 b)))
- (command "style" c "" d "" "" "" "")
- )