I have written this basic bit of code which I am trying to amend to label vertex points of a selected pile. I feel this should be quite simple but cannot work out how to move the text insert point while amending n. Any suggestions (defun C:NUM () (setq pfx (getstring " Prefix: ") sfx (getstring " Suffix: ") sn (getint " Start Number: ") ) (while sn (command "text" PAUSE "" 0 (strcat pfx (rtos sn 2 0) sfx)) (setq sn (1+ sn)) ) )