Is anyone else having an issue on the latest version of corona where a transition that is simply changing an alpha of some object doesn’t cancel with transition.cancel?
transitions[23]=transition.to(background, {alpha=0, time=1000} );
if transitions[23] then
transition.cancel(transitions[23]);
end
transitions[23]=transition.to(background, {alpha=.5, time=1000} );
The issue i’m running into is i’m alpha-ing a background graphic to 0 and in some cases that same graphic needs to alpha back in so I try to do transition.cancel on the old transition object that’s stored in an array such as the example above. basically the problem i have is the transition doesn’t cancel so the second one doesnt happen and the background graphic stays at alpha 0 [import]uid: 6317 topic_id: 4667 reply_id: 304667[/import]