can i get the info of transition if i cancel it??
like the “time left” before the transition will be complete,
after the transition.cancel wall called?
When you start the transition you could assign a variable
timeTrans = system.getTimer() --and then when you cancel the transition you could do timeLeft = system.getTimer() - timeTrans print( timeLeft )
thank hatethinkingofnames 
but i have some solution but ill try what u gave me… mine is this,
when transition start i put a timer with same delay
trans = transition.to(object,{y = 500, time = 10000, onComplete = completo})
timer = timer.performWithDelay(10000, timend, 1)
after a pause like in the game
cancel the trans and and timer and get the time left in the timer and the Y of the object
then resume with the time left and continue with the timer in time left
thanks for quick reply…
When you start the transition you could assign a variable
timeTrans = system.getTimer() --and then when you cancel the transition you could do timeLeft = system.getTimer() - timeTrans print( timeLeft )
thank hatethinkingofnames 
but i have some solution but ill try what u gave me… mine is this,
when transition start i put a timer with same delay
trans = transition.to(object,{y = 500, time = 10000, onComplete = completo})
timer = timer.performWithDelay(10000, timend, 1)
after a pause like in the game
cancel the trans and and timer and get the time left in the timer and the Y of the object
then resume with the time left and continue with the timer in time left
thanks for quick reply…