I tried in doing that, but it seems that i am getting an error.
this what i am doing,
**********current code**********
Code:
(if(setq blSet(ssget '((0 . "INSERT"))))
**********This is the change i made according to your suggestion:**********
Code:
(ssget "x" (list '(0 . "INSERT") (cons 410 (getvar "ctab"))))

Originally Posted by
miff
Looking at the code as posted to the Cadalyst website (under Hot Tip Harry's Feb05 code) it was originally written for the user to select the blocks. Based on what your question was, I'd venture a guess that someone changed the (ssget '((0 . "INSERT"))) to (ssget "x" '((0 . "INSERT"))) to select ALL blocks.....if that's the case, just change the same line to: (ssget "x" (list '(0 . "INSERT") (cons 410 (getvar "ctab")))) this will select All blocks ONLY in the current Tab.
HTH,
Jeff
[ Moderator Action = ON ]Copyright material removed[ Moderator Action = OFF ]