I need to select a block, then iterate thru the sub-entities to change all the mtext to a different layer. I can get (setq d (assoc 8 e)) (setq e2 (subst '(8 . "mylayer") d e1)) (entmod e2), however, I can't seem to figure out to isolate the mtext. Another option would be to use nentsel and be able to select all the text at once, but nentsel doesn't allow me to do that. What's the best way to accomplish this? TIA