Okay, I think I’m onto something. I don’t know exactly what is causing the problem, but I can finally reproduce it. I’ve been trying to make the example more concise, but I can’t seem to. This seems to be the magic combination.
local widget = require( "widget" ) local composer = require( "composer" ) composer.recycleOnSceneChange = true local scene = composer.newScene() local rect local scrollView local function removeObjectAndCancelTransition() print("-- Removing rect, which affects the scrollView group") display.remove(rect) rect = nil print("-- Should be cancelling transTag transition") transition.cancel("transTag") end -- "scene:create()" function scene:create( event ) local sceneGroup = self.view local group = display.newGroup() scrollView = widget.newScrollView { top = 0, left = 0, width = display.contentWidth, height = display.contentHeight, scrollWidth = display.contentWidth, scrollHeight = display.contentHeight, horizontalScrollDisabled = true, friction = .99, -- how fast the content travels when flicked; default is 0.972 backgroundColor = {0, 0, 0}, hideScrollBar = true } rect = display.newRect(0,0,100,100) rect:setFillColor(1,0,0,1) transition.to(rect, { time = 1500, x = 100, transition = easing.outExpo, tag = "transTag", onComplete = function() print("\*\*\* WRONG: Transition COMPLETED, but it should be CANCELLED! \*\*\*") end, onCancel = function() print("\*\*\* RIGHT: Transaction CANCELLED, as expected \*\*\*") end }) scrollView:insert(rect) group:insert(scrollView) -- Using a timer here so that the scene will be created properly before we attempt to destroy it. timer.performWithDelay(100, function() -- change the value of cancelAsExpected to see the difference. local cancelAsExpected = false if cancelAsExpected then -- this cancels the transition as expected composer.removeScene("scene1") else -- this does not cancel the transition composer.gotoScene("scene2", options) end end) end -- "scene:destroy()" function scene:destroy( event ) print("-- destroying scene1 --") local sceneGroup = self.view removeObjectAndCancelTransition() end -- ------------------------------------------------------------------------------- -- Unimportant stuff -- ------------------------------------------------------------------------------- -- "scene:show()" function scene:show( event ) end -- "scene:hide()" function scene:hide( event ) end -- Listener setup scene:addEventListener( "create", scene ) scene:addEventListener( "show", scene ) scene:addEventListener( "hide", scene ) scene:addEventListener( "destroy", scene ) -- ------------------------------------------------------------------------------- return scene
Both composer.removeScene and composer.gotoScene will call the destroy method in that example. However, the gotoScene version will not cancel the transition properly.
Thanks,
Dave