Author Topic: Block of text mirror wrong  (Read 6064 times)

0 Members and 1 Guest are viewing this topic.

Q1241274614

  • Guest
Block of text mirror wrong
« on: February 09, 2014, 08:53:40 AM »
Block of text

owenwengerd

  • Bull Frog
  • Posts: 451
Re: Block of text mirror wrong
« Reply #1 on: February 09, 2014, 10:33:33 AM »
See the MIRRTEXT system variable.

Q1241274614

  • Guest
Re: Block of text mirror wrong
« Reply #2 on: February 09, 2014, 11:45:52 AM »
Already tried. No way.



Lee Mac

  • Seagull
  • Posts: 12914
  • London, England
Re: Block of text mirror wrong
« Reply #3 on: February 09, 2014, 12:00:09 PM »
You will need to create a duplicate block definition with the text mirrored.

Lee Mac

  • Seagull
  • Posts: 12914
  • London, England
Re: Block of text mirror wrong
« Reply #4 on: February 09, 2014, 12:48:53 PM »
Attached is a quick draft of a possible solution (using my Copy Block Definition function):




kruuger

  • Swamp Rat
  • Posts: 637
Re: Block of text mirror wrong
« Reply #5 on: February 09, 2014, 03:54:49 PM »
create dynamic block with flip parameter.
k.

Q1241274614

  • Guest
Re: Block of text mirror wrong
« Reply #6 on: February 09, 2014, 08:36:42 PM »
Thank you.


irneb

  • Water Moccasin
  • Posts: 1794
  • ACad R9-2016, Revit Arch 6-2016
Re: Block of text mirror wrong
« Reply #7 on: February 11, 2014, 12:37:34 AM »
Another option would be to change the Text into an attribute with the default value set as the value of the text. Attributes adhere to MirrText's setting.
Common sense - the curse in disguise. Because if you have it, you have to live with those that don't.

Lee Mac

  • Seagull
  • Posts: 12914
  • London, England
Re: Block of text mirror wrong
« Reply #8 on: February 11, 2014, 01:14:45 PM »
create dynamic block with flip parameter.
Another option would be to change the Text into an attribute with the default value set as the value of the text. Attributes adhere to MirrText's setting.

Great ideas guys  :-)

trogg

  • Bull Frog
  • Posts: 255
Re: Block of text mirror wrong
« Reply #9 on: February 11, 2014, 06:06:05 PM »
Great job Lee. This is very helpful. There are some blocks that the we don't want the users to alter the text. For instances where the users need to change text to another letter, some of the blocks are dynamic blocks and the users use the available visibility state... I will give this a try and see if it works for these dynamic blocks.
Thanks again for all you do.
~Greg

Lee Mac

  • Seagull
  • Posts: 12914
  • London, England
Re: Block of text mirror wrong
« Reply #10 on: February 11, 2014, 06:36:34 PM »
Many thanks Greg - though, my posted solution is still rather crude, the program is simply generating a duplicate block definition containing a mirrored version of the text.  :|

I hope the program is useful nonetheless.

Lee

Daniel J. Ellis

  • Swamp Rat
  • Posts: 811
Re: Block of text mirror wrong
« Reply #11 on: February 12, 2014, 03:19:20 AM »
...There are some blocks that the we don't want the users to alter the text... ~Greg
I can't remember what AutoCAD calls the setting, but attributes can be set to "read only" as a way of avoiding this issue.

dJE
===
dJE

irneb

  • Water Moccasin
  • Posts: 1794
  • ACad R9-2016, Revit Arch 6-2016
Re: Block of text mirror wrong
« Reply #12 on: February 12, 2014, 07:11:38 AM »
I can't remember what AutoCAD calls the setting, but attributes can be set to "read only" as a way of avoiding this issue.
You select the AttDef (Attribute Definition) object inside the block's definition (e.g. while in BEdit). Then in the properties palette under Misc, there should be a Constant property - set this to Yes, then a user can't adjust the value of the attribute.

Though going this route means MirrText doesn't have an effect on the "attribute". Only modifiable attributes work like text, not read-only/constant.
Common sense - the curse in disguise. Because if you have it, you have to live with those that don't.