home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Professional
/
OS2PRO194.ISO
/
os2
/
packer
/
ultracom
/
u2_show.bat
< prev
next >
Wrap
DOS Batch File
|
1993-12-31
|
946b
|
56 lines
@echo off
echo off
rem (C) Copyright 1993, Ad Infinitum Programs, all rights reserved
rem This batch file is called by UC to play/show the multimedia banners.
rem If you prefer to use other software, you can modify this batch file.
rem Test if MOD banner is present
if not exist u$~ban.mod goto nomod
rem Play MOD music file using MODPLAY
mp u$~ban.mod
:nomod
rem Test if GIF banner is present
if not exist u$~ban.gif goto nogif
rem View GIF using VPIC
vpic u$~ban.gif
:nogif
rem Test if JPG banner is present
if not exist u$~ban.jpg goto nojpg
rem View JPG using FullView
fv u$~ban.jpg
:nojpg
rem Test if TXT banner is present
if not exist u$~ban.txt goto notxt
rem View TXT using DOS TYPE
type u$~ban.txt
goto end
:notxt
rem Clear screen if no TXT banner was present
cls
:end