home *** CD-ROM | disk | FTP | other *** search
/ Boot Disc 2 / boot-disc-1996-10.iso / bootcd.dir / 00280_Script_280 < prev    next >
Text File  |  1996-08-09  |  705b  |  21 lines

  1. on mouseDown
  2.   set curcastname=the name of member (the membernum of sprite the clickon)
  3.   set jumplist=value(the text of member "TVList")
  4.   if offset("Static",curcastname) then exit
  5.   if offset("AOL",curcastname) then 
  6.     open getDrive()&"\Aoleasy\Aol.exe"
  7.     exit
  8.   end if
  9.   if curcastname="tv_awards" then exit
  10.   delete char 1 to 3 of curcastname
  11.   if getpos(["Acrobat","Grail","Morph","Project","Rosenth"],curcastname)>0 then
  12.     open (the moviepath)&"Content\"&getprop(jumplist,curcastname)
  13.     cursor 4
  14.     starttimer
  15.     repeat while the timer<60
  16.     end repeat
  17.     cursor -1
  18.   else
  19.     put "This application must be started from Windows 95." into field "DemoInfo"
  20.   end if
  21. end