Transition

hi all,

I want to move an image from one position to another fixed position . For example from left side to the center of the display . It should stay there for some time, again it should move from the center to right side and disappear. How can i do this give some ideas or examples . 

Take a look at the transition api in the docs: http://docs.coronalabs.com/api/library/transition/to.html

The example at the bottom is exactly what you need

When creating transition you can assign function to onComplete parameter. This function will be called when transition ends. So in such function you can create other transition with delay parameter and it’s own onComplete function which will remove object.

Take a look at the transition api in the docs: http://docs.coronalabs.com/api/library/transition/to.html

The example at the bottom is exactly what you need

When creating transition you can assign function to onComplete parameter. This function will be called when transition ends. So in such function you can create other transition with delay parameter and it’s own onComplete function which will remove object.