Dear friends! In a while-loop I want to add a tic-tac and for me that means alternate / and \ that the program is running. I would appriciate any suggestions! Rolf
(setq bcount 0) (defun BUMP() (setq BCOUNT (1+ BCOUNT)) (princ (strcat "\r" (nth (rem BCOUNT 4) '("/" "-" "\\" "|")))) (princ) ) Just call (bump) as needed
Mr McSwain! Thanks a lot! It helps me to show the user that the program still runs when reducing - with about 70% - the number of blocks to be exploded. Rolf "R.K. McSwain" <> skrev i meddelandet (setq bcount 0) (defun BUMP() (setq BCOUNT (1+ BCOUNT)) (princ (strcat "\r" (nth (rem BCOUNT 4) '("/" "-" "\\" "|")))) (princ) ) Just call (bump) as needed