home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 December / PCWorld_2002-12_cd.bin / Software / Komercni / Krtek / MOVIE / ROZDILY.DXR / Internal_1.ls < prev    next >
Encoding:
Text File  |  2002-10-07  |  576 b   |  33 lines

  1. global gMovieOn, gAuta, gBodovani, gMotylLeti, gZvukOn
  2.  
  3. on prepareMovie
  4.   prepareMovieShared()
  5. end
  6.  
  7. on startMovie
  8.   if getOne(the actorList, gAuta) then
  9.     deleteOne(the actorList, gAuta)
  10.   end if
  11. end
  12.  
  13. on novaHra
  14.   gZvukOn = 0
  15.   go(1)
  16.   go("start")
  17.   if windowPresent("stavHry") then
  18.     tell window("stavHry")
  19.       gBodovani.ini()
  20.     end tell
  21.   end if
  22. end
  23.  
  24. on stopMovie
  25.   if getOne(the actorList, gAuta) then
  26.     deleteOne(the actorList, gAuta)
  27.   end if
  28.   if getOne(the actorList, gMotylLeti) then
  29.     deleteOne(the actorList, gMotylLeti)
  30.   end if
  31.   StopMovieShared()
  32. end
  33.