home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / clicknslide_offsite.swf / scripts / frame_3 / DoAction.as
Encoding:
Text File  |  2007-03-28  |  432 b   |  22 lines

  1. function PreviewPicture(d)
  2. {
  3.    var nextpicture = pv.preview._currentframe + d;
  4.    if(nextpicture <= pv.preview._totalframes)
  5.    {
  6.       if(nextpicture < 1)
  7.       {
  8.          nextpicture = pv.preview._totalframes;
  9.       }
  10.    }
  11.    else
  12.    {
  13.       nextpicture = 1;
  14.    }
  15.    pv.nextpicture = nextpicture;
  16.    pv.gotoAndPlay("change");
  17.    whichpic = nextpicture;
  18. }
  19. app = "clicknslide";
  20. version = "2.01";
  21. whichpic = 1;
  22.