home *** CD-ROM | disk | FTP | other *** search
/ GQ - Louise, World Cup, …remy Clarkson, Armageddon / GQCD.iso / files / game.dxr / 00012.ls < prev    next >
Encoding:
Text File  |  1998-05-21  |  386 b   |  21 lines

  1. global gShipObj
  2.  
  3. on exitFrame
  4.   if rollOver(33) then
  5.     if the mouseDown then
  6.       set the member of sprite 33 to member "abort3.pct"
  7.     else
  8.       set the member of sprite 33 to member "abort2.pct"
  9.     end if
  10.   else
  11.     set the member of sprite 33 to member "abort1.pct"
  12.   end if
  13.   go(the frame)
  14. end
  15.  
  16. on mouseDown
  17.   if objectp(gShipObj) then
  18.     launchRocket(gShipObj)
  19.   end if
  20. end
  21.