I've tried adding that bit to the code you gave me previously, but it's still putting the justification point at the top left. I'm eventually going to want to offset the text as well. My original code to do that was as follows:
- (DEFUN MTTL ()(SETVAR "CMDECHO" 0)(SETQ SCALE (/ 1 (GETVAR "CANNOSCALEVALUE")))(SETQ MTPOINT (GETPOINT "\NENTER JUSTIFICATION POINT: "))(SETQ MTHEIGHT (* SCALE 0.078125))(SETQ MTX (+ (CAR MTPOINT) (* SCALE 0.03125)))(SETQ MTY (- (CADR MTPOINT) (* SCALE 0.0390625)))(COMMAND "MTEXT" (LIST MTX MTY) "J" "TL" "H" MTHEIGHT "R" "0" "W" "0" V:TEXT "")(SETVAR "CMDECHO" 1))
Is this something I can do to the insertion point? |