Got a call from a friend for what I thought would be a simple request but maybe not. I want to get the current layer, change to "Text" layer, run the qleader command and return back to the current layer. When I tested this AutoCAD studders on the Mtext portion ....Is there anyway to do this without capturing the text first then running the qleader command? (defun c:SLE () (setq CLN (getvar "clayer")) (command "-layer" "make" "TEXT" "") (command "qleader") (while (> (getvar "cmdactive") 0) (command pause)) (setvar "clayer" CLN) )