Hi all, I am using autolay lisp, its great! But i have a small lisp programme that inserts text onto a non printing layer, for personnel notes etc. Unfortunatley now it only inserts txt on the layer specified by the Autolay programme. Here's the programme, any ideas please would be greatly appreciated. Cheers. (defun c:txtlayer (/ clayer) (setq Clayer (getvar "clayer")) (command "layer" "m" "ZZZ-CONSTRUCTION" "c" 7 "" "") (initdia) (command "_mtext") (while (eq 1 (logand 1 (getvar "CMDACTIVE")))(command pause)) (setvar "clayer" clayer) )