If you have not already read "Where do fonts come from?", then I suggest you do. Knowing what you've learned there, it can be said that in summary, the following conditions should be true:
The point is that if the actual font files are not available to the operating system, the driver or Distiller will have nothing to embed.
If the driver thinks a font is resident, it figures it doesn't need to mess with it. If you are using the AdobePS installer, this information comes from the PPD file you used, and is valid even for the specific Acrobat Distiller printer instance (which uses a PPD like all other PostScript printers). The Windows Add Printer wizard won't let you choose your own PPD.
In some cases it is okay if the driver knows fonts are resident. For example, if you are printing to a physical PostScript printer and you are using Times, there really isn't any need to force Times to download.
If you're installing a new printer (including Acrobat Distiller printer) using AdobePS, you can indicate that a font is not resident by editing the PPD before you install. (If you need to work with a printer that's already installed, see below.) Open the PPD in a text editor and look for a list of fonts. An example is shown below, but note that it will vary depending on the printer: Some have more or less, some files have different wording, and the PPD for Acrobat Distiller does not have a DefaultFont line.
*DefaultFont: Courier *Font AvantGarde-Book: Standard "(001.002)" Standard ROM *Font AvantGarde-BookOblique: Standard "(001.001)" Standard ROM *Font AvantGarde-Demi: Standard "(001.001)" Standard ROM *Font AvantGarde-DemiOblique: Standard "(001.001)" Standard ROM *Font Bookman-Demi: Standard "(001.001)" Standard ROM *Font Bookman-DemiItalic: Standard "(001.001)" Standard ROM *Font Bookman-Light: Standard "(001.001)" Standard ROM *Font Bookman-LightItalic: Standard "(001.001)" Standard ROM *Font Courier: Standard "(004.000)" Standard ROM *Font Courier-Bold: Standard "(004.000)" Standard ROM *Font Courier-BoldOblique: Standard "(004.000)" Standard ROM *Font Courier-Oblique: Standard "(004.000)" Standard ROM *Font Symbol: Special "(001.008)" Special ROM *Font ZapfDingbats: Special "(002.000)" Special ROM
You indicate which fonts are not resident by commenting out the fonts. (You could delete the lines, but I prefer the comment method.) Notice the last two fonts: The percent sign just after the asterisk comments out the line. Note: Do not comment the Couriers. For some reason (I don't know why) things seem to choke if Courier is commented, even if the DefaultFont is changed to something else.
So in the example above, if you wanted to ensure your fonts are downloaded, you would comment everything except the DefaultFont line and the four Couriers by placing a percent sign (%) to the right of the asterisk (*). In the example below, I have commonted the last two lines:
*DefaultFont: Courier *%Font AvantGarde-Book: Standard "(001.002)" Standard ROM *%Font AvantGarde-BookOblique: Standard "(001.001)" Standard ROM *%Font AvantGarde-Demi: Standard "(001.001)" Standard ROM *%Font AvantGarde-DemiOblique: Standard "(001.001)" Standard ROM *%Font Bookman-Demi: Standard "(001.001)" Standard ROM *%Font Bookman-DemiItalic: Standard "(001.001)" Standard ROM *%Font Bookman-Light: Standard "(001.001)" Standard ROM *%Font Bookman-LightItalic: Standard "(001.001)" Standard ROM *Font Courier: Standard "(004.000)" Standard ROM *Font Courier-Bold: Standard "(004.000)" Standard ROM *Font Courier-BoldOblique: Standard "(004.000)" Standard ROM *Font Courier-Oblique: Standard "(004.000)" Standard ROM *%Font Symbol: Special "(001.008)" Special ROM *%Font ZapfDingbats: Special "(002.000)" Special ROM
If you need to modify a printer that's already installed in Windows 2000 and XP, you can delete the printer and reinstall it using AdobePS and the edited PPD file. If you'd rather not delete and reinstall, you can do the following:
There are some printer settings you need to change (the defaults are usually what you don't want). These are found at various locations depending on the printer, but you can probably see them all by right-clicking the printer and choosing Printer Preferences, then clicking Advanced.
If a font is not embedded in the PostScript data and Distiller is instructed to embed them, then Distiller has to know where the font is located.
More information can be found on page 55 of the Adobe Acrobat 5 Help file.