Hallo,
I found this on cadforum cz
It works fine on acad2010, but not in acad2008.
Is it impossible, or what do I have to change ?
(defun C:BLINK ( / ent lay sslay)(defun ssblik (ss val / ssl i entn) (setq i 0 ssl (sslength ss)) (repeat ssl (setq entn (ssname ss i)) (redraw entn val) (setq i (1+ i)) ))(setvar "cmdecho" 0)(if (and (setq ent (entsel "\n select : ")) (setq ent (car ent)) (setq lay (cdr (assoc 8 (entget ent)))) (setq sslay (ssget "_X" (list (cons 8 lay)))) ) (repeat 12 (ssblik sslay 3) (command "._delay" "200") (ssblik sslay 4) (command "._delay" "200") ))(princ));(regenall)?
It is a good tool to find all things on the selected layer.
Greets from - garlic-