Hey,
Do you guys know any examples or tips how to chain effects and call them manually form java code.
For example: I need a rectancle to move in from top, when it stops then I want itβs height to increase (right now I got this height part with controlDefinintion, can I also do it with an effect?), then wehen height has increased to maximum allowed pixels I need to fade in some content + a scrollbar.
Would appreciate any help thanks
I belive I already found a satisfactory answer for that.
Nifty tutorial
Answered a few of my questions
well, probably not what you really want but the startDelay property of an effect can be used for this. The idea is to just add several effects and start them one after the other by coordinating the length properties of the individual effects with the startDelay property of the other effects:
onStartScreen β¦ startDelay=β0β length=β100β
onStartScreen β¦ startDelay=β100β length=β1000β
onStartScreen β¦ startDelay=β1100β length=β10β
probably not a very elegant solution (I know) but this will work for simple casesβ¦