Author Topic: Toggle MEP Object Snaps  (Read 5761 times)

0 Members and 1 Guest are viewing this topic.

Spike Wilbury

  • Guest
Re: Toggle MEP Object Snaps
« Reply #15 on: March 27, 2009, 02:08:22 PM »


forgot to mention.... I have a little toggle lisp that I use every day - N - that worked - but for some reason I noticed that it is turned on automatically - as I  said did not spent to much using MEP just one week - :)

it did? Then something you did in there worked somehow?

yes.... (but there is something going on behind scenes on MEP)

is this one:
Code: [Select]
;;; toggles object snaps
;;; except: extension, apparent intersection and parallel
(defun C:N  ()
  (if (zerop (getvar "osmode"))
    (progn
      (setvar "osmode" 1023)
      'OBJECT-SNAPS=ON)
    (progn
      (setvar "osmode" 0)
      'OBJECT-SNAPS=OFF)))

basically same as what Alan posted....

JohnK

  • Administrator
  • Seagull
  • Posts: 10657
Re: Toggle MEP Object Snaps
« Reply #16 on: March 27, 2009, 02:45:29 PM »
LE, I dont get it. That shouldn't turn those `object' snaps off. ...I dont know.
TheSwamp.org (serving the CAD community since 2003)
Member location map - Add yourself

Donate to TheSwamp.org

Spike Wilbury

  • Guest
Re: Toggle MEP Object Snaps
« Reply #17 on: March 27, 2009, 03:15:34 PM »
LE, I dont get it. That shouldn't turn those `object' snaps off. ...I dont know.

:)


I am neophyte in the use of MEP -  :lmao: