Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi, I'm trying to make a program for positioning layout views but doesnt makes the "pan" sentence
(defun C:WR6() (setq n (getint "num pres" ));number of repetitions (setq dspl (getint "dist" ));pan distance (setq i 1);counter (repeat n (progn (setq dspl (* i dspl)) (SETQ dspl2 (strcat (itoa dspl) "<180")) (c:rtt) (command "_MSPACE") (command "_.-pan" dspl "") (command "_PSPACE") );progn );repeat )
Solved! Go to Solution.