hi,
I update to build Corona Version: 2015.2692.
But transition.resume() not working.
I use Win7, and OS X(10.10.4).
If there are some mistakes in English, I’d like to apologize.
thanks.
[lua]local CW = display.contentWidth
local rect = display.newRect(0, 100, 50, 50)
local tween = transition.to(rect, {tag=“tagName”, time=2400, x=CW, iterations=-1})
timer.performWithDelay(1000,
function()
– “resume” working
--transition.pause(rect)
--transition.resume(rect)
– “resume” not working
transition.pause(“tagName”)
transition.resume(“tagName”)
– “resume” not working
--transition.pause(tween)
--transition.resume(tween)
– “resume” not working
--transition.pause()
--transition.resume()
end,
-1
)[/lua]