Ok so i think i have found a bug with the newest daily build of Corona.
Here’s some code.
So the onComplete fires when the transition start… Not completes.
centerX = display.contentCenterX centerY = display.contentCenterY local function bobTwo() plusOneHundredTwo = display.newText( "+100", centerX, centerY, "NexaRust", 10 ) local function removeI() display.remove(plusOneHundredTwo) end removePlusTextTwo = transition.to( plusOneHundredTwo, { time = 5000, xScale = 0.5, onComplete = print(1) }) end bobTwo()
–SonicX278