home *** CD-ROM | disk | FTP | other *** search
- echo off
- if s==%1s goto HELP
- cls
- echo ╔═════════════════════════════════════════════════════════════╗
- echo ║ MAKEMAC ║
- echo ║ ║
- echo ║ Automatic Processing of INSET PIX file to Resized and ║
- echo ║ Grayscaled to MacPaint ║
- echo ╚═════════════════════════════════════════════════════════════╝
- if not exist %1.pix goto ERR_FIND
- echo [%1]
- autoin odljet;b1miei1.96;75;^^^
- if errorlevel 1 goto IN_ERROR
- echo Gray/Size Processing ...
- autoin omf%1.hpc;pgos^^^
- if errorlevel 1 goto IN_ERROR
- echo Now converting to MAC
- convert %1.hpc *.mac
- if errorlevel 1 goto ERR_CVT
- del %1.hpc
- dir %1.mac
- goto END
- :ERR_CVT
- echo MAKEMAC processing Error!
- echo Possible problems:
- echo GNT file not set to ASCII in InSet SETUP.COM
- echo LJET.PRD file not in InSet directory
- echo Path Name to file not used (or InSet PIX directory not NONE)
- echo insufficient disk space
- pause
- goto Help
- :ERR_FIND
- Echo Can't find %1.PIX
- goto END
- :IN_ERROR
- echo MAKEMAC processing Error!
- echo InSet not loaded
- :HELP
- echo ╔═════════════════════════════════════════════════════════════╗
- echo ║ MAKEMAC ║
- echo ║ Automatic Processing of INSET PIX file to Resized and ║
- echo ║ Grayscaled to MacPaint ║
- echo ║ ║
- echo ║ MAKEMAC path\infile ║
- echo ║ Example: To Convert TEST.PIX in the root directy on the ║
- echo ║ C drive to a Grayscaled and resized MAC Screen ║
- echo ║ ║
- echo ║ MAKEMAC c:\TEST ║
- echo ║ ║
- echo ║ Requirements: ║
- echo ║ o InSet must be loaded in memory with the GNT file ║
- echo ║ set to ASCII in SETUP.COM and the LJET.PRD file ║
- echo ║ in the InSet directory ║
- echo ║ o AUTOIN.COM and CONVERT.EXE must be in the directory║
- echo ║ or path when you run MAKEMAC ║
- echo ╚═════════════════════════════════════════════════════════════╝
- :END