DISQUS

Letter Never Sent: Flash and Actionscript Basics | Letter Never Sent

  • srinoj · 3 years ago
    hi, i would like to some more basics i am using a next and previous buttons. for next button, i gave the following AS.

    on (release) {
    gotoAndPlay("34");
    }

    This tells to goto or jump to particular frame.

    but when used the same script for previous button like

    on (release) {
    gotoAndPlay("5");
    }

    in the above AS am asking to play back the 5th frame instead it plays the next frame only i.e the 35th frame. wats wrong with my AS. please do clear my doubt and give any idea how to do it.