Image scroller lagging

I did a web site AS2 for a Photographer http://www.mattera.ca/

We use this engine to make the big photo slide happen http://www.motto.ca/test/scroll_horizontal.swf
You can extract it to see the simple coding
When the photo is sliding (use the purple button), the image is fuzzy and I have some glitch on it. :expressionless:
I am wondering if you ever had this issue before, if so, how can I solve this?

Thanks for your help.

framerate = ? :stuck_out_tongue:

Is It a tween or you move it by code ?

Cause tweening a Graphics is a loooooooooot slower than a movieCLip.

Lachhh

The frame Rate is at 30 frame/sec. I tryed with 20 and 40, and I still have
And the script I use to make move the stripe is
onClipEvent (load) {
targetx = 46.0;
delay = 8;
}
onClipEvent (enterFrame) {
distx = targetx-_x;
_x += distx/delay;
}

But I think the biggest problem is the 3MB, 10 000 pixels wide images :wink:

Thanks for trying to help me

image.smooth = true

look up tween class

end of message