home *** CD-ROM | disk | FTP | other *** search
/ A Virtual Reality Guide to Texas / CD.iso / texdata / qtvrxtra.cst / 00001.ls next >
Encoding:
Text File  |  1998-05-18  |  419 b   |  17 lines

  1. on exitFrame
  2.   -- 2nd Movie Display Frame Script
  3.   global gQTVRObj
  4.   
  5.   if isQTVRMovie(gQTVRObj) then
  6.     if rollover(10) then 
  7.       -- changes from previous frame script
  8.       put QTVRMouseOver(gQTVRObj) into returnVar  -- stick the return result in a variable
  9.       put returnVar -- put that in the message box
  10.     else
  11.       QTVRIdle(gQTVRObj)
  12.       cursor 200
  13.       cursor -1
  14.     end if
  15.   end if
  16.   go the frame
  17. end