infact it is much easier with a single image and a window. (but the single image should be the same image reapting 2 times)

Code:
#include <acknex.h>

BMAP* image_2x = "img2x.jpg";
var scroll_var;
PANEL* repeating_img = {
	window(0,0,512,240,image_2x,scroll_var,0);
	flags = SHOW;
}

void main(){
	while(1){
		scroll_var += 10*time_step;
		scroll_var%=512;
		wait(1);
	}
}



with this image(rename to img2x.jpg ):




Last edited by Quadraxas; 02/26/10 14:10. Reason: forgot the image :D

3333333333