Hi @blablu1212,
You can relate/associate multiple transitions by setting a common “tag” on them, similar to this:
[lua]
transition.to( square1, { time=1500, alpha=1, tag=“myTag” } )
transition.to( square2, { time=1500, alpha=1, tag=“myTag” } )
[/lua]
Then, you can manage all of these transitions collectively by using that tag value in other calls:
[lua]
transition.pause( “myTag” )
transition.resume( “myTag” )
transition.cancel( “myTag” )
[/lua]
Here is the documentation:
http://docs.coronalabs.com/api/library/transition/to.html
Hope this helps,
Brent