home *** CD-ROM | disk | FTP | other *** search
/ PC Format (UK) 112 / pc-format-112.iso / PCF112CD1.dir / 00046_Script_46 < prev    next >
Text File  |  2000-07-14  |  578b  |  42 lines

  1. on mouseEnter me
  2.   
  3.   sound playFile 1, "Lasergun"
  4.   
  5.   --  turn button glow on
  6.   
  7.   set the memberNum of sprite 15 to 371
  8.   
  9.   --  change graphic and fit into window
  10.   
  11.   set the member of sprite 16 to "history"
  12.   
  13.   set the rect of sprite 16 to rect(29, 172, 411, 369)
  14.   
  15.   --  change title text
  16.   
  17.   set the memberNum of sprite 17 to 121
  18.   
  19.   cursor 280
  20.   
  21. end
  22.  
  23. on mouseLeave me
  24.   
  25.   --  turn button glow off
  26.   
  27.   set the memberNum of sprite 15 to 372
  28.   
  29.   cursor 0
  30.   
  31. end
  32.  
  33. on mouseUp
  34.   open "Full Products\FreeDV_98se.exe"
  35. end
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.