Everytime I use MPEDIT, all my OSNAPs get cleared and I have to set them again, but if I do an PEDIT then MULTIPLE I don't get this problem.
I'm running 2002.
Thanks !!
![]() |
|
![]() |
|
![]() |
|
![]() |
Everytime I use MPEDIT, all my OSNAPs get cleared and I have to set them again, but if I do an PEDIT then MULTIPLE I don't get this problem.
I'm running 2002.
Thanks !!
This is all I know about it:
http://usa.autodesk.com/adsk/servlet...linkID=2475323
Hi
Give the below a try, is from a pre WittyWorm Forum post that I made when this question was asked before (offers a simple solution to get round the problem) -
Have a good one, MikeCode:(defun c:PEM (/ SSet) (setq SSet (ssget "_I")) (if (= SSet nil) (progn (command "._Pedit" "_M") (while (> (getvar "CMDACTIVE") 0) (command pause) ) ) (progn (command "._PEdit" "_M" SSet "") (while (> (getvar "CMDACTIVE") 0) (command pause) ) ) ) (princ) )