Jump to content

Recommended Posts

Posted

i need to move the text one on the top or bottom as attached 

i need  lisp program 

text move.PNG

Posted

Maybe txt2mtxt its a express command and converts text to mtext. 

Posted
16 hours ago, mhupp said:

Its better to post a sample drawing.

when i am click the text should come like attached .............

text move.PNG

  • Dislike 2
Posted
4 hours ago, BIGAL said:

Maybe txt2mtxt its a express command and converts text to mtext. 

no no need to move like 150mm or as we like 

Posted

please improve this when i click move to right side 

 

(defun c:moveit (/ s)
  (if (setq s (ssget ":L"))
    (while (getpoint "\nPick a point to nudge: ")
      (command "_.move" s "" '(0. 0. 0.) '(1. 0. 0.))
    )
  )
  (princ)
)

 

Posted
7 hours ago, rifkhan said:

when i am click the text should come like attached .............

Only trying to help you could do with out the attitude. their are things like text height, orientation, rotation, what layer the text is on, what justification. 

how far the text needs to be moved. is that distance the same for all text.

All things you can't know by looking at the picture.

Posted
On 1/6/2022 at 8:02 AM, mhupp said:

Its better to post a sample drawing.

Appearantly rifkhan doesn't want a solution.

  • Like 1
Posted

Just to add to this, a sample drawing attaching a dwg rather than a clip of an image would give everyone a chance to work out what you want. Assuming the mirror command - my first thought - is no good. Things like are the lines shown polylines, lines, leaders, circles. Is the text mtext, text or a dimension text, are the texts consistently offset from the original line or does that vary and even if all the lines are perpendicular to the axis or at angles.. all these things we could get from a sample dwg attached.

  • Like 1
Posted

Same, one option if you know how is to play with mtext line spacing so 150 gap is feasible.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...