home *** CD-ROM | disk | FTP | other *** search
/ PC Direkt 1998 #11 / PCDIREKT_1198.bin / SHOWDATA / INSTALL.DXR / 00001.ls next >
Encoding:
Text File  |  1998-03-20  |  1.4 KB  |  32 lines

  1. on startMovie
  2.   global myplatform, myversion
  3.   repeat with i = 40 to 45
  4.     set the visible of sprite i to 0
  5.   end repeat
  6.   set the text of member "BU" to " "
  7.   if myplatform = "NT" then
  8.     set the media of member 17 of castLib 1 to the media of member "NT" of castLib 1
  9.     set the media of member 1 of castLib "libinst" to the media of member "normtext" of castLib "libinst"
  10.   else
  11.     if myplatform = "31" then
  12.       set the media of member 17 of castLib 1 to the media of member "WIN" of castLib 1
  13.       set the media of member 1 of castLib "libinst" to the media of member "normtext" of castLib "libinst"
  14.     else
  15.       if myversion contains "upd" then
  16.         set the media of member 17 of castLib 1 to the media of member "95_Updatemailing" of castLib 1
  17.         set the media of member 1 of castLib "libinst" to the media of member "upd" of castLib "libinst"
  18.       else
  19.         if myplatform = "95" then
  20.           set the media of member 17 of castLib 1 to the media of member "WIN" of castLib 1
  21.           set the media of member 1 of castLib "libinst" to the media of member "normtext" of castLib "libinst"
  22.         else
  23.           if myplatform = "Mac" then
  24.             set the media of member 17 of castLib 1 to the media of member "WIN" of castLib 1
  25.             set the media of member 1 of castLib "libinst" to the media of member "normtext" of castLib "libinst"
  26.           end if
  27.         end if
  28.       end if
  29.     end if
  30.   end if
  31. end
  32.