ScrollPane Buttons Referencing Wrong Frames
I'm having some trouble getting my scrollpane going. I have it linked to a MC that has a number of buttons in it. Those buttons should reference frames on my main timeline but for some reason they reference one frame back.
My code is..
//Should take me to the third frame but it take me to the second frame.
on (click) {
_root.gotoAndStop(3);
}
If I put gotoandStop(1) then it takes me to my first scene.
Can anyone tell me what is wrong with my code.
|