Hello,
I can’t get this Lisp function to work, as the two add-1 get synthesized simultaneously. I experience no problem when working inside a graphical Omloop.
(lambda ()
(let* ((fq '((100 150) (200 250)))
(at '(0 3))
(dur '(3 3)))
(loop for x in fq for y in at for z in dur collect (make-instance 'add-1
:numcols (length x)
:action-time y
:durs z
:freq x))))
Thank you in advance for any help