hmmm…i think your going about it the wrong way. i think i would be much simpler and easier to just have an mc of
whatever you want to scroll and just use something like this:
<hr>
on(rollOver) {
while (_root.distance < _root.max) {
_root.someMC._y += 2;
_root.distance +=2;
and then in the first frame put:
<hr>
_root.distance = 0;
_root.max = the lentgh of whatever you want to scroll;
<hr>
i’m not real confident in my coding and i’m sure there’s a better way to do it, but that’s what i came up with. if it works awesome, if it doesn’t sorry.