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

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