Jag vet inte om du kanske öppnar flera hundra PDF:er om dagen, men annars är det väl inte så jobbigt att ha en ikon i docken som du kan dra filerna till?
Mitt system fungerar så att vissa filer får ´Preview-ikon* och andra får ´Acrobat-ikon*, det är lite godtyckligt. Preview används i Preview, för förhandsvisningar.
Testa också att dirigera om alla filer till preview, kolla att den används för att förhandsvisa dokument, och installera sedan om Acrobat.
Nedan följer min Custominfo.plist, som finns i paketet Preview. Om du vill kan du kopiera den, och se om det funkar bättre då. Personligen tycker jag inte att problemet är livshotande.
{
CFBundleIconFile = "preview.icns";
CFAppleHelpAnchor = "prevw001";
CFBundleSignature = "prvw";
CFBundleIdentifier = "com.apple.Preview";
CFBundleShortVersionString = "1.1";
CFBundleDocumentTypes = (
{
CFBundleTypeName = NSPDFPboardType;
CFBundleTypeRole = Viewer;
LSIsAppleDefaultForType = Yes;
CFBundleTypeIconFile = "PDF.icns";
CFBundleTypeExtensions = (pdf, PDF);
CFBundleTypeOSTypes = ("PDF ");
},
{
CFBundleTypeName = NSTIFFPboardType;
CFBundleTypeRole = Viewer;
LSIsAppleDefaultForType = Yes;
CFBundleTypeIconFile = "tiff.icns";
CFBundleTypeExtensions = (tiff, tif);
CFBundleTypeOSTypes = ("TIFF");
},
{
CFBundleTypeName = "Windows Bitmap Image";
CFBundleTypeRole = Viewer;
LSIsAppleDefaultForType = Yes;
CFBundleTypeIconFile = "bmp.icns";
CFBundleTypeExtensions = (bmp);
CFBundleTypeOSTypes = ("BMP ", "BMPf");
},
{
CFBundleTypeName = "Graphics Interchange Format Image";
CFBundleTypeRole = Viewer;
LSIsAppleDefaultForType = Yes;
CFBundleTypeIconFile = "gif.icns";
CFBundleTypeExtensions = (gif);
CFBundleTypeOSTypes = ("GIFf");
},
{
CFBundleTypeName = "Windows Icon Image";
CFBundleTypeRole = Viewer;
LSIsAppleDefaultForType = Yes;
CFBundleTypeIconFile = "ico.icns";
CFBundleTypeExtensions = (ico);
},
{
CFBundleTypeName = "Apple Icon Image";
CFBundleTypeRole = Viewer;
CFBundleTypeExtensions = (icns);
},
{
CFBundleTypeName = "JPEG Image";
CFBundleTypeRole = Viewer;
LSIsAppleDefaultForType = Yes;
CFBundleTypeIconFile = "jpeg.icns";
CFBundleTypeExtensions = (jpg, jpeg);
CFBundleTypeOSTypes = ("JPEG");
},
{
CFBundleTypeName = "Apple PICT Document";
CFBundleTypeRole = Viewer;
LSIsAppleDefaultForType = Yes;
CFBundleTypeIconFile = "pict.icns";
CFBundleTypeExtensions = (pict,pct);
CFBundleTypeOSTypes = ("PICT");
},
{
CFBundleTypeName = "Portable Network Graphics Image";
CFBundleTypeRole = Viewer;
LSIsAppleDefaultForType = Yes;
CFBundleTypeIconFile = "PNG.icns";
CFBundleTypeExtensions = (png);
CFBundleTypeOSTypes = ("PNGf");
},
{
CFBundleTypeName = "Apple QuickTime Image";
CFBundleTypeRole = Viewer;
LSIsAppleDefaultForType = Yes;
CFBundleTypeIconFile = "QTIF.icns";
CFBundleTypeExtensions = (qtif);
CFBundleTypeOSTypes = ("qtif");
},
{
CFBundleTypeName = "Targa Image";
CFBundleTypeRole = Viewer;
LSIsAppleDefaultForType = Yes;
CFBundleTypeIconFile = "TGA.icns";
CFBundleTypeExtensions = (tga);
CFBundleTypeOSTypes = ("TPIC");
},
{
CFBundleTypeName = "Silicon Graphics Image";
CFBundleTypeRole = Viewer;
LSIsAppleDefaultForType = Yes;
CFBundleTypeIconFile = "SGI.icns";
CFBundleTypeExtensions = (sgi);
CFBundleTypeOSTypes = (".SGI");
},
{
CFBundleTypeName = "Adobe Photoshop Image";
CFBundleTypeRole = Viewer;
CFBundleTypeIconFile = "PSD.icns";
CFBundleTypeExtensions = (psd);
CFBundleTypeOSTypes = ("8BPS");
},
{
CFBundleTypeName = "Apple MacPaint Image";
CFBundleTypeRole = Viewer;
LSIsAppleDefaultForType = Yes;
CFBundleTypeExtensions = (PNTG);
CFBundleTypeOSTypes = ("pntg");
},
{
CFBundleTypeName = "Fax Document";
CFBundleTypeRole = Viewer;
LSIsAppleDefaultForType = Yes;
CFBundleTypeIconFile = "FAX.icns";
CFBundleTypeExtensions = (fax);
},
{
CFBundleTypeName = "FlashPix Image";
CFBundleTypeRole = Viewer;
LSIsAppleDefaultForType = Yes;
CFBundleTypeExtensions = (fpx);
}
);
}