I am having trouble with xp and the following lisp routine:
Sorry hit send instead of paste This is the routine (defun c:bf () (setq getline (ssget)) (command "break" getline "f") ) This works on 2k, not xp
No that won't work anywhere. (setq getline (ssget)) produces a selection set nit an entity. (setq getline (car (entsel))) wil give you the entity name taht you need.
Try this... (defun c:bf (/ ss) (while (or (not ss) (= 52 (getvar "errno")) ) (setvar "errno" 0) (setq ss (ssget "+.:E:S" (list (cons 0 "LINE")))) ) (if ss (vl-cmdf "._break" (ssname ss 0) "f")) ) Don