home *** CD-ROM | disk | FTP | other *** search
/ UnrealScript Game Programming All in One / UnrealScriptGameProgrammingAllInOne.iso / start.exe / start.dxr / 00024_programs.ls < prev    next >
Encoding:
Text File  |  2006-03-10  |  280 b   |  18 lines

  1. on hyperlinkClicked me, choice
  2.   if choice = EMPTY then
  3.     exit
  4.   end if
  5.   if choice = "INSTALL" then
  6.     installpath = the moviePath & "bloodshed\devcpp-4.9.9.2_setup.exe"
  7.     open(installpath)
  8.   end if
  9. end
  10.  
  11. on mouseEnter me
  12.   cursor(280)
  13. end
  14.  
  15. on mouseLeave me
  16.   cursor(-1)
  17. end
  18.