Page 3 of 3 FirstFirst 123
Results 21 to 26 of 26

Thread: Text mirrored

  1. #21
    Member
    Join Date
    2004-05
    Posts
    24
    Login to Give a bone
    0

    Default Re: Text mirrored

    Tom,
    I copied the whole file at once but the results was that above.
    I can't load lsp file with appload because between several extensions the lsp one isn't recognized.

  2. #22
    Certified AUGI Addict cadtag's Avatar
    Join Date
    2000-12
    Location
    Cairo - no, not Illinois
    Posts
    5,069
    Login to Give a bone
    0

    Default Re: Text mirrored

    Copy the .lsp file to the same folder as the drawing, and key in (LOAD "filename.lsp") at the command line.

  3. #23
    Member
    Join Date
    2004-05
    Posts
    24
    Login to Give a bone
    0

    Default Re: Text mirrored

    Quote Originally Posted by cadtag View Post
    Copy the .lsp file to the same folder as the drawing, and key in (LOAD "filename.lsp") at the command line.
    Cadtag,
    I try to write at the command line (LOAD
    but, when I push space bar, Autocad send the message:
    LISP command is not available.
    Any other hint?
    Last edited by lugligino; 2015-03-12 at 10:56 AM.

  4. #24
    Member
    Join Date
    2004-05
    Posts
    24
    Login to Give a bone
    0

    Default Re: Text mirrored

    Quote Originally Posted by cadtag View Post
    Copy the .lsp file to the same folder as the drawing, and key in (LOAD "filename.lsp") at the command line.
    Cadtag, I verified with another installation and lisp works!
    Is it possible to modify the lisp routine to modify the incorrect "Width Factor = -1" and set it to 1?
    Thanks.
    Last edited by lugligino; 2015-03-12 at 11:00 AM.

  5. #25
    Certifiable AUGI Addict
    Join Date
    2001-03
    Location
    Tallahassee, FL USA
    Posts
    3,667
    Login to Give a bone
    0

    Default Re: Text mirrored

    Quote Originally Posted by lugligino View Post
    Cadtag, I verified with another installation and lisp works!
    Is it possible to modify the lisp routine to modify the incorrect "Width Factor = -1" and set it to 1?
    Thanks.
    I'm sure you've found modifying the Width Factor doesn't help.
    From AutoCAD's DXF reference 210 used above is the Extrusion direction default = 0, 0, 1.
    All the corrupted texts in your drawing were set to 0, 0, -1 which caused the odd Width Factor.
    The (ssget "_x" '((210 0.0 0.0 -1.0))) selects all objects with the Extrusion direction set to 0, 0, -1.
    There's no way it could have selected text that wasn't corrupted unless you modified the code.
    Which does work for the drawing you posted. Wasn't the modified drawing I posted modified correctly?
    You could modify it to (ssget "_x" '((0 . "TEXT")(210 0.0 0.0 -1.0))) which would only select TEXT with the Extrusion direction set to 0, 0, -1 if you want to limit it to that for a different drawing.

  6. #26
    Member
    Join Date
    2004-05
    Posts
    24
    Login to Give a bone
    0

    Default Re: Text mirrored

    Quote Originally Posted by Tom Beauford View Post
    I'm sure you've found modifying the Width Factor doesn't help.
    From AutoCAD's DXF reference 210 used above is the Extrusion direction default = 0, 0, 1.
    All the corrupted texts in your drawing were set to 0, 0, -1 which caused the odd Width Factor.
    The (ssget "_x" '((210 0.0 0.0 -1.0))) selects all objects with the Extrusion direction set to 0, 0, -1.
    There's no way it could have selected text that wasn't corrupted unless you modified the code.
    Which does work for the drawing you posted. Wasn't the modified drawing I posted modified correctly?
    You could modify it to (ssget "_x" '((0 . "TEXT")(210 0.0 0.0 -1.0))) which would only select TEXT with the Extrusion direction set to 0, 0, -1 if you want to limit it to that for a different drawing.
    Tom,
    you're right: the draw that I annexed was only a little part of the one I was dealing.
    In my other installation lisp can be loaded and swap lisp with the modified line works well.
    Thank you.

Page 3 of 3 FirstFirst 123

Similar Threads

  1. 2013: Mirrored Text is backwards
    By Darren Allen in forum AutoCAD General
    Replies: 5
    Last Post: 2014-10-08, 01:45 PM
  2. Controlling text in Mirrored X-refs
    By jrosario-x122635 in forum AutoCAD Customization
    Replies: 2
    Last Post: 2006-09-29, 05:22 AM
  3. Blocks and mirrored text.
    By H-Angus in forum AutoCAD General
    Replies: 7
    Last Post: 2006-07-25, 07:02 PM
  4. Linetype text appears mirrored
    By Doodlemusmaximus in forum AutoCAD General
    Replies: 9
    Last Post: 2005-07-14, 11:24 PM
  5. Keep Text within xrefs readable when mirrored
    By trevor.tizard in forum AutoCAD General
    Replies: 5
    Last Post: 2005-06-29, 07:53 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •