home *** CD-ROM | disk | FTP | other *** search
/ DIGIZINE 1 / DIGIZINE.BIN / main / sony / highdes.dir / 00320_Script_320 < prev    next >
Text File  |  1995-09-12  |  437b  |  22 lines

  1. --radio rollover/send back/main loop
  2. on enterFrame
  3.   CURSORENTERFRAME
  4. end
  5.  
  6.  
  7. on exitFrame
  8.   global gCurrRolledSprite, gCurrCursorSprite, gTwiceOver
  9.   if sprite gCurrCursorSprite intersects gCurrRolledSprite then
  10.     if not gTwiceOver then 
  11.       go loop
  12.       put TRUE into gTwiceOver
  13.     else
  14.       go to the frame
  15.     end if
  16.   else
  17.     --    KillQTSound
  18.     go "hd main2"
  19.     put FALSE into gTwiceOver
  20.   end if
  21. end
  22.