Text in ACAD? Please HELP!

Discussion in 'AutoCAD' started by Guru, Aug 6, 2007.

  1. Guru

    Guru Guest

    Is it possible and what's the best way of having vectorized text from typing
    in ACAD.
    Is it doable in ACAD itself or do I have to import it in ACAD or something?

    Thanx!!!
     
    Guru, Aug 6, 2007
    #1
  2. Guru

    Dr Fleau Guest

    Hiya

    If you have Express Tools, there's a command that allows you to
    explode the text. If you don't, and I suppose that is the case, here's
    a routine taken from www.cadalyst.com

    ;Tip1558: XMT.LSP Explode Mtext (C)1999, Len Yip
    (defun C:XMT () ;EXPLODE ALL MTEXT LEN YIP JULY/96
    (setq ZZA (ssget "x" '((0 . "MTEXT"))))
    (setq ZZN (sslength ZZA))
    (setq INDEX 0)
    (repeat ZZN
    (setq BL (entget (ssname ZZA INDEX)))
    (setq INDEX (1+ INDEX))
    (setq ZZC (cdr (assoc 10 BL)))
    (command "EXPLODE" ZZA)))

    There is usually a little cleaning up to do after the explosion, with
    shrapnel and all leaving unwanted lines and such. But it is very
    useful when you need the outline of text as polylines and not real
    text.

    Dr Fleau
     
    Dr Fleau, Aug 6, 2007
    #2
  3. Guru

    Guru Guest

    Thanx a lot!
    I figured out the Explode command, but then i found a better way - Copy -
    Paste from CorelDraw! ;)

    Cheers!
     
    Guru, Aug 7, 2007
    #3
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.