Hi Guys,
I try to set a boolean value in the TimelineMax.set() method, like this:
tl.set(toAnimate, {
y: 50,
visible:"true", // also tried visible:true
alpha: 1
})
But this gives me a NaN value of the visible property of my toAnimate object. But neither visible:"true" nor visible:true are working.
The solution using a callback seems for me a bit over sized (see here http://greensock.com/forums/topic/2456-tweening-boolean-value/)
Is this the only solution?