home *** CD-ROM | disk | FTP | other *** search
/ PC Direkt 1998 #11 / PCDIREKT_1198.bin / SHOWDATA / SHOWEINF.DXR / 00056.ls < prev    next >
Encoding:
Text File  |  1998-09-05  |  419 b   |  21 lines

  1. on exitFrame
  2.   global myversion, myplatform
  3.   set x to 0
  4.   if the platform contains "16" then
  5.     set x to 12
  6.   else
  7.     if (myplatform = "NT") or (the platform contains "Mac") then
  8.       set x to 14
  9.     else
  10.       set x to 11
  11.     end if
  12.   end if
  13.   repeat with i in [11, 12, 14]
  14.     if x = i then
  15.       set the visible of sprite i to 1
  16.       next repeat
  17.     end if
  18.     set the visible of sprite i to 0
  19.   end repeat
  20. end
  21.