本帖最后由 ZZXXQQ 于 2013-5-24 23:15 编辑
- (defun tkinitdata(/ i j k dwgstr sldstr)
- (setq i (* curpage 9) j 1)
- (mode_tile "b_down" (if(>= (+ (* curpage 9) 9) allnum) 1 0))
- (mode_tile "b_up" (if(= curpage 0) 1 0))
- (setq x (dimx_tile "a1") y (dimy_tile "a1"))
- (foreach a '("a1" "a2" "a3" "a4" "a5" "a6" "a7" "a8" "a9")
- (start_image a) (fill_image 0 0 x y -2) (end_image)
- )
- (while (and (<= j 9) (< i allnum))
- (setq sldstr (strcat "xzk(" (nth i sldname_list) ")"))
- (start_image (strcat "a" (itoa j)))
- (slide_image 0 0 x y sldstr)
- (end_image)
- (setq i (1+ i) j (1+ j))
- )
- )
|