@Anthony.Lopez... following up on @calderg1000 post, here's the full code adding Text Style and Text Height, while also commenting out the Text String match ability. I changed the command name to TMA2 to differentiate. Note - I did not run this and test, but it should work.
;;Match Text - Dtext, Mtext, MLeader
;;
;;By Steve Hill with Red Transit Consultants, LLC on 11/16/2015
;;Revised by Carlos Calderon G and Steve Hill
;;
;;Rev: Commented out Text String matching, added ability to match text style and height
;;
(defun c:TMA2 ( / oobj nobj nstrg nwidth)
(prompt "\nThis command uses the current multileader style in conversion process. Variations in command depend on multileader style. Current style is '")
(prompt (getvar "cmlstyle"))
(prompt "'... \n")
(vl-load-com)
;;Select match source object
(setq oobj (vlax-ename->vla-object (car (nentsel "\nSelect source mtext, dtext, or mleader: "))))
(if (= (vlax-get-property oobj 'ObjectName) "AcDbMText")
(progn
;(setq nstrg (vlax-get-property oobj 'TextString))
(setq nwidth (vlax-get-property oobj 'Width))
(setq nst (vlax-get-property oobj 'textstylename));get the text style
(setq nht (vlax-get-property oobj 'Textheight));get the text height
);progn
)
(if (= (vlax-get-property oobj 'ObjectName) "AcDbText")
(progn
;(setq nstrg (vlax-get-property oobj 'TextString))
(setq nwidth 0)
(setq nst (vlax-get-property oobj 'textstylename));get the text style
(setq nht (vlax-get-property oobj 'Textheight));get the text height
);progn
)
(if (= (vlax-get-property oobj 'ObjectName) "AcDbMLeader")
(progn
;(setq nstrg (vlax-get-property oobj 'TextString))
(setq nwidth (vlax-get-property oobj 'TextWidth))
(setq nst (vlax-get-property oobj 'textstylename));get the text style
(setq nht (vlax-get-property oobj 'Textheight));get the text height
);progn
)
;;Select match desitnation object
(setq nobj (vlax-ename->vla-object (car (nentsel "\nSelect destination mtext, dtext, or mleader: "))))
(if (= (vlax-get-property nobj 'ObjectName) "AcDbMText")
(progn
;(vlax-put-property nobj 'TextString nstrg)
(vlax-put-property nobj 'Width nwidth)
(vlax-put-property nobj 'textstylename nst);change the text style
(vlax-put-property nobj 'Textheight nht);change the text height
);progn
)
(if (= (vlax-get-property nobj 'ObjectName) "AcDbText")
(progn
;(vlax-put-property nobj 'TextString nstrg)
(vlax-put-property nobj 'textstylename nst);change the text style
(vlax-put-property nobj 'Textheight nht);change the text height
);progn
)
(if (= (vlax-get-property nobj 'ObjectName) "AcDbMLeader")
(progn
;(vlax-put-property nobj 'TextString nstrg)
(vlax-put-property nobj 'TextWidth nwidth)
(vlax-put-property nobj 'textstylename nst);change the text style
(vlax-put-property nobj 'Textheight nht);change the text height
);progn
)
(princ)
);defun