+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 13
  1. #1
    Junior Member
    Using
    AutoCAD 2011
    Join Date
    Jun 2011
    Posts
    10

    Default Avoid text changing position when changing justification

    Registered forum members do not see this ad.

    Hello,

    in Autocad when you change the justification of text the insert snap of the text stays fixed and the text changes position around this point.

    Using the JUSTIFYTEXT command you can change the justification of the text without changing its position. However this command is operated through the command bar of dynamic input. What I would like to do is to have the justification change in the quick properties this way.

    Thanks!

  2. #2
    Super Moderator SLW210's Avatar
    Computer Details
    SLW210's Computer Details
    Operating System:
    Windows 7 PRO
    Computer:
    IBM Lenovo
    Motherboard:
    ACPI x86
    CPU:
    Pentium(R) Dual-Core CPU E5500 @ 2.80GHz
    RAM:
    4 GB RAM
    Graphics:
    Nvidia Quadro 600 1GB
    Primary Storage:
    300 GB
    Secondary Storage:
    650GB
    Monitor:
    ThinkVision 22"
    Discipline
    Multi-disciplinary
    SLW210's Discipline Details
    Occupation
    Design Draftsman
    Discipline
    Multi-disciplinary
    Details
    Mostly do drafting related to manufacturing. From doing site layouts with proposed updates, additions and renovations to be budgeted and submitted for bid, to updating and changing existing drawings to reflect maintenance and repair/revision work done on site.
    Using
    AutoCAD 2011
    Join Date
    May 2007
    Location
    South Florida, USA
    Posts
    9,205

    Default

    Quick Properties and Properties seem to use a different command than _JUSTIFYTEXT. Why do you need to use Quick Properties for this?
    “A narrow mind and a fat head invariably come on the same person” Zig Zigler



  3. #3
    Luminous Being alanjt's Avatar
    Using
    Civil 3D 2011
    Join Date
    Apr 2008
    Posts
    6,051

    Default

    Funny, quick properties doesn't move MText for me. Granted, I just prefer the JustifyText command (I have a macro for the few three I use ML, MC, MR).
    DropBox | finding the light...
    Seann: ...it went crazy ex-girlfriend on me...
    eric_monceaux...its pretty funny seeing two AutoCAD Gods give each other flak...

  4. #4
    Super Moderator SLW210's Avatar
    Computer Details
    SLW210's Computer Details
    Operating System:
    Windows 7 PRO
    Computer:
    IBM Lenovo
    Motherboard:
    ACPI x86
    CPU:
    Pentium(R) Dual-Core CPU E5500 @ 2.80GHz
    RAM:
    4 GB RAM
    Graphics:
    Nvidia Quadro 600 1GB
    Primary Storage:
    300 GB
    Secondary Storage:
    650GB
    Monitor:
    ThinkVision 22"
    Discipline
    Multi-disciplinary
    SLW210's Discipline Details
    Occupation
    Design Draftsman
    Discipline
    Multi-disciplinary
    Details
    Mostly do drafting related to manufacturing. From doing site layouts with proposed updates, additions and renovations to be budgeted and submitted for bid, to updating and changing existing drawings to reflect maintenance and repair/revision work done on site.
    Using
    AutoCAD 2011
    Join Date
    May 2007
    Location
    South Florida, USA
    Posts
    9,205

    Default

    Quote Originally Posted by alanjt View Post
    Funny, quick properties doesn't move MText for me. Granted, I just prefer the JustifyText command (I have a macro for the few three I use ML, MC, MR).
    The OP stated TEXT was the problem.

    My 2011 text works just like the OPs, but I never use Quick Properties and prefer the JustifyText command, also. Generally just double-click Mtext and edit in the editor.
    “A narrow mind and a fat head invariably come on the same person” Zig Zigler



  5. #5
    Luminous Being alanjt's Avatar
    Using
    Civil 3D 2011
    Join Date
    Apr 2008
    Posts
    6,051

    Default

    Quote Originally Posted by SLW210 View Post
    The OP stated TEXT was the problem.

    My 2011 text works just like the OPs, but I never use Quick Properties and prefer the JustifyText command, also. Generally just double-click Mtext and edit in the editor.
    Oops, didn't see that.
    JustifyText command is the easiest in my opinion. I try and avoid formatting codes in MText as much as possible (changing from within the editor) for ease of altering things globally later on, plus if I have 20 pieces of text that I want to change the justification, I want to easily accomplish this and NOT go from text to text, fixing them individually.

    JIC, here's my crappy macros:

    Code:
    ;; Justification Macros
    ;; Alan J. Thomspon
    
    (defun _justifyIt (justify title / ss)
      (princ (strcat "\nSelect *Text to " title " justify: "))
      (if (setq ss (ssget "_:L" '((0 . "ATTDEF,MTEXT,TEXT"))))
        (command "_.justifytext" ss "" justify)
      )
      (princ)
    )
    
    (defun c:JC (/) (_justifyIt "_MC" "Middle Center"))
    (defun c:JL (/) (_justifyIt "_ML" "Middle Left"))
    (defun c:JR (/) (_justifyIt "_MR" "Middle Right"))
    (defun c:BC (/) (_justifyIt "_BC" "Bottom Center"))
    (defun c:TC (/) (_justifyIt "_TC" "Top Center"))
    DropBox | finding the light...
    Seann: ...it went crazy ex-girlfriend on me...
    eric_monceaux...its pretty funny seeing two AutoCAD Gods give each other flak...

  6. #6
    Super Moderator SLW210's Avatar
    Computer Details
    SLW210's Computer Details
    Operating System:
    Windows 7 PRO
    Computer:
    IBM Lenovo
    Motherboard:
    ACPI x86
    CPU:
    Pentium(R) Dual-Core CPU E5500 @ 2.80GHz
    RAM:
    4 GB RAM
    Graphics:
    Nvidia Quadro 600 1GB
    Primary Storage:
    300 GB
    Secondary Storage:
    650GB
    Monitor:
    ThinkVision 22"
    Discipline
    Multi-disciplinary
    SLW210's Discipline Details
    Occupation
    Design Draftsman
    Discipline
    Multi-disciplinary
    Details
    Mostly do drafting related to manufacturing. From doing site layouts with proposed updates, additions and renovations to be budgeted and submitted for bid, to updating and changing existing drawings to reflect maintenance and repair/revision work done on site.
    Using
    AutoCAD 2011
    Join Date
    May 2007
    Location
    South Florida, USA
    Posts
    9,205

    Default

    Lots of text/Mtext is handled differently than just a few.
    “A narrow mind and a fat head invariably come on the same person” Zig Zigler



  7. #7
    Luminous Being alanjt's Avatar
    Using
    Civil 3D 2011
    Join Date
    Apr 2008
    Posts
    6,051

    Default

    Quote Originally Posted by SLW210 View Post
    Lots of text/Mtext is handled differently than just a few.
    Right, but it pisses me off when I want to change the justification of a piece of MText and I have to open the editor just to accomplish a seemingly simple task.
    Take me with a grain of salt, I'm just not wild about MText formatting and it annoys me that autodesk hasn't given us easier ways to globally deal with them.
    DropBox | finding the light...
    Seann: ...it went crazy ex-girlfriend on me...
    eric_monceaux...its pretty funny seeing two AutoCAD Gods give each other flak...

  8. #8
    Super Moderator SLW210's Avatar
    Computer Details
    SLW210's Computer Details
    Operating System:
    Windows 7 PRO
    Computer:
    IBM Lenovo
    Motherboard:
    ACPI x86
    CPU:
    Pentium(R) Dual-Core CPU E5500 @ 2.80GHz
    RAM:
    4 GB RAM
    Graphics:
    Nvidia Quadro 600 1GB
    Primary Storage:
    300 GB
    Secondary Storage:
    650GB
    Monitor:
    ThinkVision 22"
    Discipline
    Multi-disciplinary
    SLW210's Discipline Details
    Occupation
    Design Draftsman
    Discipline
    Multi-disciplinary
    Details
    Mostly do drafting related to manufacturing. From doing site layouts with proposed updates, additions and renovations to be budgeted and submitted for bid, to updating and changing existing drawings to reflect maintenance and repair/revision work done on site.
    Using
    AutoCAD 2011
    Join Date
    May 2007
    Location
    South Florida, USA
    Posts
    9,205

    Default

    You are correct, I just haven't got around to customizing a whole lot. Just hired in here in December 2010 and been fairly busy, computer was upgraded a couple months ago with a reinstall on AutoCAD and I lost what I had done previous to that.
    “A narrow mind and a fat head invariably come on the same person” Zig Zigler



  9. #9
    Luminous Being alanjt's Avatar
    Using
    Civil 3D 2011
    Join Date
    Apr 2008
    Posts
    6,051

    Default

    Quote Originally Posted by SLW210 View Post
    You are correct, I just haven't got around to customizing a whole lot. Just hired in here in December 2010 and been fairly busy, computer was upgraded a couple months ago with a reinstall on AutoCAD and I lost what I had done previous to that.
    That sucks. A top priority for me is proper customization, but even more important is being able to backup all customization for quick and easy migration to a new machine. I can jump from one machine to another with only a couple minutes to make autocad work/look how I want.
    DropBox | finding the light...
    Seann: ...it went crazy ex-girlfriend on me...
    eric_monceaux...its pretty funny seeing two AutoCAD Gods give each other flak...

  10. #10
    Super Moderator SLW210's Avatar
    Computer Details
    SLW210's Computer Details
    Operating System:
    Windows 7 PRO
    Computer:
    IBM Lenovo
    Motherboard:
    ACPI x86
    CPU:
    Pentium(R) Dual-Core CPU E5500 @ 2.80GHz
    RAM:
    4 GB RAM
    Graphics:
    Nvidia Quadro 600 1GB
    Primary Storage:
    300 GB
    Secondary Storage:
    650GB
    Monitor:
    ThinkVision 22"
    Discipline
    Multi-disciplinary
    SLW210's Discipline Details
    Occupation
    Design Draftsman
    Discipline
    Multi-disciplinary
    Details
    Mostly do drafting related to manufacturing. From doing site layouts with proposed updates, additions and renovations to be budgeted and submitted for bid, to updating and changing existing drawings to reflect maintenance and repair/revision work done on site.
    Using
    AutoCAD 2011
    Join Date
    May 2007
    Location
    South Florida, USA
    Posts
    9,205

    Default

    Registered forum members do not see this ad.

    Yea, I will get re-customized soon and buy a USB drive for retaining my customization. No CAD department here since 2004, all the drawings I have to work that are recent are what the contractors have submitted as as-builts for the last 8 years. But the pay is excellent (salary), only work 5 days a week, and should get a nice bonus.

    P.S.
    The big boss is wanting to move to AutoPLANT/Plant 3D platform next year and wants me to put the entire facility in 3D.
    “A narrow mind and a fat head invariably come on the same person” Zig Zigler



Similar Threads

  1. changing the angle of view in position locator?
    By br0604bom in forum AutoCAD 3D Modelling & Rendering
    Replies: 5
    Last Post: 7th Nov 2010, 01:02 am
  2. How to change the position of an object without changing the ucs?
    By marlon in forum AutoCAD 3D Modelling & Rendering
    Replies: 11
    Last Post: 5th Nov 2008, 05:57 am
  3. Replies: 5
    Last Post: 27th Aug 2008, 04:04 pm
  4. Changing Text
    By Natalsharks in forum AutoLISP, Visual LISP & DCL
    Replies: 4
    Last Post: 27th Aug 2008, 03:52 am
  5. Dim Text not changing
    By slimjramirez in forum AutoCAD Drawing Management & Output
    Replies: 2
    Last Post: 8th May 2006, 10:53 pm

Bookmarks

Posting Permissions

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