Try typing M2P instead of Mid, see if that works. If not I've got other ways.
Registered forum members do not see this ad.
I guess this is really going to be an easy one.
(I even typed MID at the command line as I thought it may be a command and it would ask me to select 2 points - But it didn't!)
Anyway.........
Say I have 1 horizontal line near the top of the screen and another horizontal line at the bottom of the screen.
Is there a built in command, where you simply select the 2 and it plots in a point (or moves the cursor) or something like that, to the dead centre between the two points (in this case lines) I've selected?
Rather than measuring it, or using the offset command?




Try typing M2P instead of Mid, see if that works. If not I've got other ways.
first type Line or Polyline - and then at the first prompt type M2P
Life doesn't suck, although we all go through periods when it may be easier to think that, than to discern the solution to whatever problem is the most formidable
at the moment in one's personal UCS.
Go to PLAN view instead. - Dadgad




Put this in your acaddoc.lsp file
Then make a toolbar button w/ this as the macroCode:(defun mid2pt (p1 p2 / x y z) (setq x (/ (+ (car p1)(car p2)) 2)) (setq y (/ (+ (cadr p1)(cadr p2)) 2)) (setq z (/ (+ (caddr p1)(caddr p2)) 2)) (list x y z)) (defun c:mid2pt ( / p1 p2) (setq p1 (getpoint "\nFirst point: ")) (setq p2 (getpoint "\nSecond point: ")) (mid2pt p1 p2))
or you can invoke it transparently with 'mid2ptCode:'Mid2Pt




“A narrow mind and a fat head invariably come on the same person” Zig Zigler
![]()

I didnt know about that command...i just love finding out new stuff![]()
Registered forum members do not see this ad.
Thanks everyone for your help (and command spelling corrections)
Another helpful nugget of information to add to my book.
Bookmarks