It works in 2008
Registered forum members do not see this ad.
do SSX command exist in 2007?![]()




It works in 2008
Yes, SSX has been around since R14. Command Reference List
"Work Smart, Not Hard"
Click to View My Portfolio ( Updated 05/21/2013 ) ---> http://www.rdeweese.com/
oh cool - a cryptic thread![]()
what does SSX do?
Find your newbest friend
at
Rain Rescue
If you are a good drafter, tech will help. If you are a bad drafter, nothing will help. - Jack_O'neill at CADTutor
"Work Smart, Not Hard"
Click to View My Portfolio ( Updated 05/21/2013 ) ---> http://www.rdeweese.com/
That's an interesting (old?) command. I wrote a small lisp recently to do much the same thing (before I knew about that one):
Code:;;-------------------------------------------------------------------------- ;; SELSET.LSP CREATE A SELECTION SET WITH MULTIPLE SELECTIONS ;;========================================================================== ;; ;;START COMMAND .............. SELSET ;;SELECTION SET NAME.............. ss ;;TO RECOVER SELECTION SET........ !ss ;; ;;WRITTEN BY: ALAN CULLEN OCTOBER 2007 ;; ;;-----------------------------MAIN PROGRAM------------------------------ (defun c:selset () (setq test 1) (prompt "\n Select objects....") (setq ss (ssget)) (while test (prompt "\n Select next set of objects....") (setq ss2 (ssget)) (if (/= ss2 nil) (progn (setq number (sslength ss2)) (setq counter 0) (repeat number (setq name (ssname ss2 counter)) (setq counter (+ 1 counter)) (ssadd name ss) )) (progn (setq test nil) ))) (prompt "\n Use !ss to recover the selection set....") )




SSX command serves primarily to filter a selection set based on object properties. Since the advent of "filter" & "qselect", SSX probably has few advantages.
Alan, as far as I could tell your routine combines 2 selections sets, & gives them a variable name that can be retrieved for use in another command.
Thanks, Carl, but only one selection set called ss. It was a quick and dirty to help a member a little while ago. I've never actually used it. Old habits die hard, so I still use (setq ss (ssget)).![]()
Registered forum members do not see this ad.
SSX is an Express Tool, if you have Express Tools loaded you should have it. It is command line only.
“A narrow mind and a fat head invariably come on the same person” Zig Zigler
![]()
Bookmarks