Help using timer on storyboard

I have few images

local magicBall
local magicBall2
local magicBall3
local magicBall4
local magicBall5

each of them is making a transition.to, in the enterScene

magicBall3 = display.newImage( “magicBall.png” )
    magicBall3.x = 923
    magicBall3.y = -233
    magicBall3:scale (.4, .4)
    magicBall3.rotation = ( 34 )
    transition.to(magicBall3, {x=923 , y=750, time=7800})


But how do I make a transition to just 2 of them and after 10 seconds, I want to move 2 more, and then after 22 seconds move the other one?

Is there a way to do this?

Thanks

Victor

Yes. You need to study timer.performWithDelay().

See http://docs.coronalabs.com/api/library/timer/performWithDelay.html

Some good samples listed on the API doc page as well as other Samples in your Corona installation. 

Thanks ksan,

I think I got it.

Yes. You need to study timer.performWithDelay().

See http://docs.coronalabs.com/api/library/timer/performWithDelay.html

Some good samples listed on the API doc page as well as other Samples in your Corona installation. 

Thanks ksan,

I think I got it.