MC question
MC question
Out of context: Reply #8
- Started
- Last post
- 11 Responses
- unformatted0
you're gonna have to give more detail as "what" isn't working. post some of your code.
you could try this.
onclipevent(onenterframe) {
if (direction = reverse) {
_root.prevframe();
}
else {
_root.nextframe();
}onclipevent(mouseover){
direction = forward;
}onclipevent(mouseout){
direction = reverse;
}there are alot of ways to do this, but you need to supply more info.