home *** CD-ROM | disk | FTP | other *** search
/ LAUNCH 3 / LAUNCH.BIN / pc / sony / highdes.dir / 00276_Script_276 < prev    next >
Text File  |  1995-06-07  |  689b  |  27 lines

  1. on enterframe
  2.   RADIOROLL2
  3. end
  4.  
  5.  
  6. --------
  7.  
  8. on RADIOROLL2
  9.   if rollover(5) then --rollover the rectangular sprite area
  10.     if the mouseCast = the castNum of sprite 5 then --rollover the matted sprite area
  11.       set the locV of sprite(5) to (the locV of sprite(5) + 5)
  12.       updatestage
  13.       set the locV of sprite(5) to (the locV of sprite(5) - 5)
  14.       updatestage
  15.       exit
  16.     end if
  17.   else if rollover(6) then
  18.     if the mouseCast = the castNum of sprite 6 then
  19.      set the locH of sprite(6) to (the locH of sprite(6) + 5)
  20.       updatestage
  21.       set the locH of sprite(6) to (the locH of sprite(6) - 5)
  22.       updatestage
  23.       exit
  24.     end if
  25.   end if
  26. end
  27.