Hi Russell...
Scrolling thumbnail panel, eh...I've never heard of such a thing. 
First, your .fla is very easy to change. You only have to change one number to alter the scrolling distances. But let me offer you some advice (though unsolicited as it is) first.
How many of these things do you have to do? If it's many more, might I suggest just creating one dynamic flash file. If you need granular control over images, you can use XML. The more of these movies that you add to a page, you're going to get performace hits. Taking the images out of the .fla and making it dynamic will free up a lot of resources for you (including your time).
Just my two cents.
Now for your solution.
In advertising.fla:
Code:
// call function xpos
x_pos = xpos(900,.75);
with (menu)
{
_x += (x_pos - _x)*.4;
}
}
That'll make it work. For future versions, just play around with the highlighted number. That's all you need to do.
Bookmarks