Jova wrote:Can I get some help on installing ttf2eot in Vista?
There's no installation involved. It's a command-line application.
Here's a batch script for you so you can just drag and drop TTF files to create EOT files.
Create a .bat file and put the following in it:
- Code: Select all
@echo off
if [%1]==[] goto :eof
:loop
"%~dp0ttf2eot.exe" %1 "%~dpn1.eot"
shift
if not [%1]==[] goto loop
pause
Then just drop the TTF on the .bat file. Good luck!

