home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem (c) Miguel Angel Lucero 1996
- cls
- echo
- echo Micromanía 23, Diciembre 1996
- echo
- choice /c:sn /N ¿Queréis ver el trailer en Windows 95? (s\n)
- if errorlevel 2 goto d
- if errorlevel 1 goto w
- goto fin
-
- :w
- cls
- echo
- echo Trailer de "Sospechosos Habituales" (WINDOWS 95)
- echo
- echo Micromanía 23, Diciembre 1996
- echo
- echo Iniciando visualizador...
- pause
- mplayer sospe.avi
- goto fin
-
- :d
- cls
- echo
- echo Trailer de "Sospechosos Habituales" (WINDOWS 3.X)
- echo
- echo Micromanía 23, Diciembre 1996
- echo
- echo Iniciando windows...
- win mplayer sospe.avi
- goto fin
-
- :fin
-
-
-