I have the following simple code that transitions an image into view, then loads another image off screen after the transition is completed.
The behavior I am seeing on my lg android phone is that the image coming into view hesitates 3/4 of the way. Seemingly this is caused by the onComplete function firing before the transition is completed - not what I expected.
transition.to(xyz[2],{time = 150, x = _W*.5, onComplete = loadImgLast});
As a work around I removed the onComplete param and put in this code after the transition, which corrects the problem,
timer.performWithDelay( 225, loadImgLast)
I would like to know if anyone has any insight as to what may be causing this behavior.
[import]uid: 31039 topic_id: 11403 reply_id: 311403[/import]