home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 May / PCW596.iso / polskie / eduk / genfast / genfast.lzh / DEMO_08.PAK / ANIMA5.DA_ < prev    next >
Text File  |  1996-02-08  |  637b  |  39 lines

  1. ; Animacja numer 5 - animowanie peÆnoekranowe
  2. ; Wersja 1.0
  3. ; Wykonanie #PWR
  4.  
  5. [1!]
  6. @ClrScr;
  7. @Reset;
  8. @ShowScreen;
  9. @DisableStatusBar;
  10. @DefKeyboardHandler(200);
  11. @SaveScreen;
  12. @MessageBox('Jak zakoñczyì?','klawiszem [ESC]');
  13. @DefIdleProc(6);
  14. ; Zdefiniowanie opóªnienia czasowego
  15. @D:=50
  16.  
  17. [6]
  18. @Delay(%D);
  19. @ShowPCX('uman01.pcx');
  20. @Delay(%D);
  21. @ShowPCX('uman02.pcx');
  22. @Delay(%D);
  23. @ShowPCX('uman03.pcx');
  24. @Delay(%D);
  25. @ShowPCX('uman04.pcx');
  26. @Delay(%D);
  27. @ShowPCX('uman05.pcx');
  28. @GoTo:100
  29.  
  30. [100]
  31. @CheckEvents;
  32.  
  33. [200]
  34. @IF (%Z = $011B) then begin
  35. @RestoreScreen;
  36. @ReplaceProgram('shell.dat',1);
  37. @end;
  38. @CheckEvents;
  39.