Well, first off, the time line doesn't move. Ever. Perhaps you mean you want the playback to go forward or backward depending on the button pressed?
There are a few ways to do this, some more simplistic than others, and some more "eye-pleasing" than others.
No one other than you will ever see your timeline. But if you are on say frame 60 of the timeline and want to go to frame 40 on a press of a button then you can just put this code on your button:
Code:
on(release){
_root.gotoAndPlay("40");
}
If this isn't what you mean, please explain, or show examples
Bookmarks