It works, but it should really be like this for a horizontal scroll:
spd = 1.0; //scroll speed (pixels per second)
[width,height]/2 + [time*spd,0]
Or like this for a vertical scroll:
spd = 1.0; //scroll speed (pixels per second)
[width,height]/2 + [0,time*spd]
Dan