home *** CD-ROM | disk | FTP | other *** search
/ Disney Interactive Software Sampler 1998 to 1999 / DISNEY99.ISO / Media / WACOM / Wacomgm1.dxr / 00004_AskForLoop.ls < prev    next >
Encoding:
Text File  |  1998-11-16  |  395 b   |  24 lines

  1. on enterFrame
  2.   global ModeSlide, bover, iniLink
  3.   if ModeSlide then
  4.     set iniLink to 0
  5.     set bover to 0
  6.     ShowButtonSensitive(25, 21)
  7.     ShowButtonSensitive(26, 22)
  8.     SetMyCursor(bover)
  9.   else
  10.     cursor(4)
  11.     startTimer()
  12.     repeat while the timer < 180
  13.       nothing()
  14.     end repeat
  15.   end if
  16. end
  17.  
  18. on exitFrame
  19.   global ModeSlide
  20.   if ModeSlide then
  21.     go(the frame)
  22.   end if
  23. end
  24.