Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello guys,
May I have your help, please?
I am stuck in a problem. Let's say I have a selection set with TEXTS and MTEXTS. Then, I EXPLODE this selection set to have only TEXTS.
So, the selection set is no longuer good to use because it does not have those new TEXTS.
It would be possible to "rebuild" that selection set, without the need to "manually" select those new TEXTS? In another words, it would be possible to add the new TEXTS to the selection?
Here is what I am trying:
(defun c:EMT () (setq ss (ssget '((0 . "*TEXT")))) (setvar "qaflags" 1) (command "_.explode" ss "") (command) (setvar "qaflags" 0) ;How do I rebuild the ss selection set here to include the new texts? )
Thanks
Marcelo
Solved! Go to Solution.