Two screenwidth images for movement not working

I’ve tried this before in an app over a year ago.

I have two images 480px across.
One is on the screen, the other is offset to the right the image width.
I use transition.to to move them both left imageWidth pixels over the same amount of time, but they don’t keep together. There’s always a pixel or two difference as a gap which grows or shrinks and they get out of sync.
Any ideas? [import]uid: 10389 topic_id: 22389 reply_id: 322389[/import]

Might have to just put them in a runtime and check image.x and change that… [import]uid: 10389 topic_id: 22389 reply_id: 89269[/import]

you might make one image which is 480 + 240 wide
Duplicate the left half of the 480 into the right hand portion so that you end up with a sandwich.

AB becomes ABA
Now you transition a single image, no gaps.
When it reaches the point where you are -240 , immediately switch the x co-ordinate to 0 or maybe 1 and start again.
You won’t see any gaps that way.
[import]uid: 108660 topic_id: 22389 reply_id: 89270[/import]

Cheers [import]uid: 10389 topic_id: 22389 reply_id: 89272[/import]