home *** CD-ROM | disk | FTP | other *** search
/ Unreal Tournament Game Programming for Teens / UnrealTournamentGameProgrammingForTeens.iso / start.exe / start.dxr / 00024_programs.ls < prev    next >
Encoding:
Text File  |  2006-11-09  |  313 b   |  20 lines

  1. on hyperlinkClicked me, choice
  2.   if choice = EMPTY then
  3.     exit
  4.   end if
  5.   if choice = "winzip" then
  6.     gotoNetPage("http://www.winzip.com")
  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.