if (_root.menu._currentframe>1) {
_root.menu.prevFrame( ) ;
this.gotoAndPlay (2) ;
}
if (_root.menu._currentframe<=1) {
this.gotoAndStop(1) ;
}
Youll notice we used something we havent explored before: _currentframe, which is one of many movie clip properties that Flash can use in various functions. _currentframe represents the numeric value of currently-playing frame in the specified movie clips timeline.


