Any clues??
--------------
"converting mtext" _justifytext
Select objects: 1 found
Select objects:
Error: U:\global\src\coreapps\etlib\utility.h@71 Could not create an new
selection set
Command: mc Unknown command "MC". Press F1 for help.
--------------------
--
Michael LaQuire
Arthur Ruteberg Homes, Inc.
Cad Trainer
mlaq...@arhomes.com
(setq ss1 nil)
Attempting to manage a large number of selection sets simultaneously is not
recommended. An AutoLISP application cannot have more than 128 selection
sets open at once. (The limit may be lower on your system.) When the limit
is reached, AutoCAD refuses to create more selection sets. Keep a minimum
number of sets open at a time, and set unneeded selection sets to nil as
soon as possible. If the maximum number of selection sets is reached, you
must call the gc function to free unused memory before another ssget will
work.
.......
cheers
Steve
"Michael LaQuire" <mlaq...@arhomes.com> wrote in message
news:1317B8154C2177E7...@in.WebX.maYIadrTaRb...
Jim
"Michael LaQuire" <mlaq...@arhomes.com> wrote in message
news:1317B8154C2177E7...@in.WebX.maYIadrTaRb...
; Select Set Identify & Clean
; Copyright 2001 DotSoft [http://www.dotsoft.com]
(defun c:ssclean ()
(setq ctr 0)
(setq lst (atoms-family 1))
(foreach sym lst
(if (= (type (eval (read sym))) 'PICKSET)
(progn
(setq ctr (1+ ctr))
(eval (read (strcat "(setq " sym " nil)")))
(princ (strcat "\nNullified (" (itoa ctr) "): " sym))
)
)
)
(gc)
(princ)
)
Terry
(defun C:SSCLEAR ( / atoms)
(foreach sym (atoms-family 0)
(if (eq (type (eval sym)) 'pickset)
(set sym nil)
)
)
(princ)
)
"Michael LaQuire" <mlaq...@arhomes.com> wrote in message
news:1317B8154C2177E7...@in.WebX.maYIadrTaRb...