Hi -

I would like to know how to scroll a pixel font and have it stop on a whole integer value on a roll out function.

I keep finding posts that say you SHOULD do this but I can't find a post or tutorial that says specifically how.

I emailed fontsforflash and they suggested I post an inquiry here, which wasn't very helpful but I'm hoping someone here will be.

My knowledge of ActionScripting is still fairly beginner so please be as specific as possible.

My current code for the scroll action (which works fine on antialiased fonts) is:

on (rollOver) {
tellTarget ("/upaction") {
gotoAndPlay ("up");
}
}
on (rollOut) {
tellTarget ("/upaction") {
gotoAndStop ("stop");
}
}

The down action is similar:

on (rollOver) {
tellTarget ("/scroll") {
play ();
}
}
on (rollOut) {
tellTarget ("/scroll") {
stop ();
}
}

The text itself is a movie clip scrolling behind a mask.

Also, if anyone has any tips to add to this on easing the stop action for a smooth stop that would be really nice too.

Thanks in advance!