Mantis Games,
I have written a very simple program which scrolls an image continually from left to right. I used only one image, but had to load it twice, due to the need of two seperate images. The effect is simply achieved by decrementing the x coordinate variable for each image. This would be the x coordinate for the left side of each of the two images.
If their x coordinate becomes less than the width of the image(in this case, 800 pixels), then that image is placed exactly one pixel to the right of the other image. This creates the seamless scrolling. Yes, I believe this is the only reasonable method to create this effect.
As a note, if you are using more than two images to scroll, then I would suggest not pasting the image to the screen, unless the image's x coordinate is equal or lesser than the x coordinate of the right side of the screen. This will probably save much trouble from your processor.
I have attached to this post the source code and single image file I have created for this experiment.
+NanoBrain+