home *** CD-ROM | disk | FTP | other *** search
/ Passport / passport.iso / pc / passport / basics.dxr / Internal_7.ls < prev    next >
Encoding:
Text File  |  1998-01-26  |  287 b   |  20 lines

  1. on exitFrame
  2.   if rollOver(3) then
  3.     if not soundBusy(2) then
  4.       if the frame = marker(0) then
  5.         go(the frame - 1)
  6.         exit
  7.       end if
  8.     end if
  9.     go(the frame)
  10.   else
  11.     go("Base")
  12.   end if
  13. end
  14.  
  15. on mouseDown
  16.   if rollOver(3) then
  17.     go(the frame + 1)
  18.   end if
  19. end
  20.