Missing Command on AutoCAD 2019

Missing Command on AutoCAD 2019

Anonymous
Not applicable
1,221 Views
9 Replies
Message 1 of 10

Missing Command on AutoCAD 2019

Anonymous
Not applicable

Hello All,

 

I used to "FT" command to flip the dimension text in AutoCAD 2017. (pictures 1 and 2 )

 

now AutoCAD 2019 aberrantly removed that helpful and quick command. (Pictures 3 and 4)

Am I the only one who is having this problem or this command is really gone?

 

thank you, FT 0.JPGFT 1.JPGFT2.JPGFT3.JPG

0 Likes
Accepted solutions (2)
1,222 Views
9 Replies
Replies (9)
Message 2 of 10

TheCADnoob
Mentor
Mentor

Are you using a vertical?

FT is not Present in my 2016 or 2018.

Is this a lisp or plugin that you have purchased?

CADnoob

EESignature

0 Likes
Message 3 of 10

Patchy
Mentor
Mentor

It is not a core command, did you use this autolisp and changed the FDT to FT  ???

 

Capture.JPG

Message 4 of 10

pendean
Community Legend
Community Legend
Accepted solution
You forgot to move your custom LISP or add-on that included "FT", that's not a core ability. YOu setup your 2017 for you? Where are those LISP file stored for 2017 to use?

Since you still have 2017 and it works, try something like this to track it down from 2017's commandline then move it

(findfile "FT.LSP")
or
(findfile "FDT.LSP")
Message 5 of 10

AutoMarcus
Collaborator
Collaborator

hey mate, have a look in the bottom of the bag where all the fries fall out.

some times its down there.

or you could take a photo of the command and they send you a new one, and the Allen key that fits it.

0 Likes
Message 6 of 10

natasha.l
Alumni
Alumni

Hello @Anonymous, 

 

Correct, this functionality is not standard.

The proper command that is supported in AutoCAD 2019 is the DIMTEDIT command that moves text and the dimension line you would follow the command prompts >Rotate > 180 > select object. 

 

Please "Accept Solution" if a reply or replies have helped resolve the issue or answered your question, to help others in the community.

Message 7 of 10

TheCADnoob
Mentor
Mentor
Accepted solution

complete dumb luck i just ran across one of our users using FT. 

Here is the lisp he was using

 

(defun C:FT (/ ss i ent ele)
(setq ss (ssget '((0 . "DIMENSION")))
i (1- (sslength ss)))
(while (not (minusp i))
(setq ent (ssname ss i)
ele (entget ent))
(entmod
(subst (cons 51 (- (abs (cdr (assoc 51 ele))) PI))
(assoc 51 ele)
ele))
(entupd ent)
(setq i (1- i))))

CADnoob

EESignature

Message 8 of 10

Anonymous
Not applicable

This command is helpful, but not convenient. thanks for reply 

0 Likes
Message 9 of 10

Anonymous
Not applicable

What is Vertical? 

0 Likes
Message 10 of 10

TheCADnoob
Mentor
Mentor

A vertical is a Autodesk Application built on top of AutoCAD like Architecture, MEP, ME, Plant 3D. More correctly since the advent of "Just one AutoCAD" these are now called toolsets. 

CADnoob

EESignature