You can also use hittest as an alternative, I also find it to be more sensitive to the mouse compared to using rollOvers. You can use a script like this:
I was hoping there was a method without the use of MC.
The reason being i’ve created a historical timeline with no use of MC - probably not the best approach, in fact i am also wondering if anybody can shed some light on the best way to create one.
by dividing the whole timeline into 32 chunks. Starting with the first keyframe i added the first chunk, then the second keyframe the 1st chunk slides from right to left and the gap caused by this movement is filled with the second chunk, and so on. The timeline effect is definitely there, and the buttons i use to go back and fwd work as they should by using
on (release) {
nextFrame();
}
and
on (release) {
prevFrame();
}
the problem appears when using invisible buttons on the timeline itself. It does work fine on the fwd effect as i am using
on (rollOver) {
play();
}
on (rollOut) {
stop();
}
but i find no way to use the same feature to go back …
Can anybody help, even it means recreating the timeline altogether?