(command "_.-pan" not working

(command "_.-pan" not working

diegolopezsilanes
Advocate Advocate
980 Views
1 Reply
Message 1 of 2

(command "_.-pan" not working

diegolopezsilanes
Advocate
Advocate

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
)
0 Likes
Accepted solutions (1)
981 Views
1 Reply
Reply (1)
Message 2 of 2

diegolopezsilanes
Advocate
Advocate
Accepted solution

(command "_.-pan" dspl2 "")

0 Likes