Notifications
Clear all
[Closed] Link constraint target listbox
Jul 06, 2008 6:25 pm
hi all,
I’ve a new question
how can i add into a listbox, the link_constraint targets and frames?
like on this picture
i fund how to add the targets, but not how to add the frames #
4 Replies
Jul 06, 2008 6:25 pm
Isnt it just:
at time?
or setting the slidertime?
slidertime = currentime ?
Jul 06, 2008 6:25 pm
with this:
$.transform.controller.addTarget ParentItmSel slidertime
i add my targets to the link contstraint, but now i would like to add them into my listbox
Jul 06, 2008 6:25 pm
Just append both values to arrays:
targetArray =#($point01)
timeArray =#(20)
and build a new array with these:
for i = 1 to targetArray.count do
(
append listArray (targetsArray[i].name as string + ” ” + timeArray[i] as string)
)
listbox.items = listArray