home *** CD-ROM | disk | FTP | other *** search
/ Passport / passport.iso / pc / passport / lang.dxr / 00001.ls next >
Encoding:
Text File  |  1998-01-26  |  542 b   |  26 lines

  1. on prepareMovie
  2.   global Language
  3.   NotVisible([8, 9, 10])
  4.   Cursors([11, 12, 13])
  5.   if Language <> "E" then
  6.     case Language of
  7.       "F":
  8.         set spr to 5
  9.       "G":
  10.         set spr to 6
  11.       "S":
  12.         set spr to 7
  13.       otherwise:
  14.         alert("valore sconosciuto per Language")
  15.     end case
  16.     set L to the loc of sprite spr
  17.     puppetSprite(spr, 1)
  18.     set the member of sprite spr to member "Lang_E" of castLib "Internal"
  19.     set the loc of sprite spr to L
  20.     set the ink of sprite spr to 36
  21.   end if
  22. end
  23.  
  24. on startMovie
  25. end
  26.