El Capitan Vista previa del resaltador de PDF color amarillo cambiado

2

Originalmente actualicé de OS X Mavericks a El Capitan, y cuando edito archivos PDF, mi resaltador predeterminado es el color amarillo brillante (ejemplo inferior de la imagen). Sin embargo, recientemente, después de cambiar el color del resaltador a rojo y luego volver a amarillo, el nuevo color amarillo resaltado (ejemplo superior de la misma imagen) ya no es el mismo que el de la parte inferior. Y no importa lo que haga, el nuevo resaltador amarillo ya no es brillante ... solo esta mandarina opaca como el color :(

¿Cómo hago para volver a cambiar al color amarillo de resaltado deseado?

Gracias

Nota 1: mi versión actual de Vista previa es 8.1.877

Nota 2: La captura de pantalla se basa en el folleto A530 de Building Better Home de APA ...

    
pregunta Antony 18.12.2015 - 05:49

1 respuesta

1

Alguien tuvo la amabilidad de escribir un código que solucionaría este problema.

Estoy reenviando el código aquí, para poder simplificar la solución.

//compile with: clang -W -Wall changehighlight.m -framework AppKit
#import <AppKit/AppKit.h>

char cmd[2048];

int main(int argc,char **argv){
    if(argc<3){
        fprintf(stderr,"changehighlight Listname Colorname\nexample: Apple Orange / Crayons Lime\n");
        return 1;
    }
    @autoreleasepool{
        //prepare
        int ver=0;
        {
            int c;
            FILE *funame=popen("uname -r","r");
            for(;~(c=fgetc(funame))&&c!='.';)ver=ver*10+c-'0';
            pclose(funame);
            if(ver<12){
                printf("It looks like you are using Lion or former. This app is useless and might cause unexpected result. Are you sure to continue? [y/N] ");
                c=getchar();
                if(c!='y'&&c!='Y')return 1;
            }
        }

        //get color
        NSColor *color=nil;
        {
            NSString *listname=[NSString stringWithCString:argv[1] encoding:NSUTF8StringEncoding];
            NSString *name=[NSString stringWithCString:argv[2] encoding:NSUTF8StringEncoding];
            for(NSColorList *colorlist in [NSColorList availableColorLists]){
                if([[colorlist name] isEqual:listname]){
                    color=[colorlist colorWithKey:name];
                }
            }
            if(color==nil){
                fprintf(stderr,"color name looks invalid\n");
                return 1;
            }
        }
        NSData *data=[NSArchiver archivedDataWithRootObject:color];
        NSString *desc=[data description];

        //do the hack
        strcpy(cmd,"defaults write \"");
        strcat(cmd,getenv("HOME"));
        if(ver==14){
            // Yosemite
            strcat(cmd,"/Library/Group Containers/com.apple.Preview/Library/Preferences/com.apple.Preview.plist");
        }else if(ver>=11){
            // Lion,Mountain Lion,Mavericks and El Capitan
            strcat(cmd,"/Library/Containers/com.apple.Preview/Data/Library/Preferences/com.apple.Preview.plist");
        }else{
            strcat(cmd,"/Library/Preferences/com.apple.Preview.plist");
        }
        // PVAnnotationColor_8:   highlight
        // PVAnnotationColor_9:   delete line (need to use right click menu)
        // PVAnnotationColor_10:  under line (not functional)
        strcat(cmd,"\" PVAnnotationColor_8 \"");
        strcat(cmd,[desc UTF8String]);
        strcat(cmd,"\"");
        puts(cmd);
        system(cmd);
        system("killall cfprefsd");
        return 0;
    }
}

/*
List of Colors with usual OSX configuration:

Apple Black
Apple Blue
Apple Brown
Apple Cyan
Apple Green
Apple Magenta
Apple Orange
Apple Purple
Apple Red
Apple Yellow
Apple White

Crayons Cantaloupe
Crayons Honeydew
Crayons Spindrift
Crayons Sky
Crayons Lavender
Crayons Carnation
Crayons Licorice
Crayons Snow
Crayons Salmon
Crayons Banana
Crayons Flora
Crayons Ice
Crayons Orchid
Crayons Bubblegum
Crayons Lead
Crayons Mercury
Crayons Tangerine
Crayons Lime
Crayons Sea Foam
Crayons Aqua
Crayons Grape
Crayons Strawberry
Crayons Tungsten
Crayons Silver
Crayons Maraschino
Crayons Lemon
Crayons Spring
Crayons Turquoise
Crayons Blueberry
Crayons Magenta
Crayons Iron
Crayons Magnesium
Crayons Mocha
Crayons Fern
Crayons Moss
Crayons Ocean
Crayons Eggplant
Crayons Maroon
Crayons Steel
Crayons Aluminum
Crayons Cayenne
Crayons Asparagus
Crayons Clover
Crayons Teal
Crayons Midnight
Crayons Plum
Crayons Tin
Crayons Nickel

"Web Safe Colors" 003366
"Web Safe Colors" 99CCFF
bla bla...

System alternateSelectedControlColor
System alternateSelectedControlTextColor
System controlBackgroundColor
System controlColor
System controlDarkShadowColor
System controlHighlightColor
System controlLightHighlightColor
System controlShadowColor
System controlTextColor
System disabledControlTextColor
System gridColor
System headerColor
System headerTextColor
System highlightColor
System keyboardFocusIndicatorColor
System knobColor
System labelColor
System quaternaryLabelColor
System scrollBarColor
System secondaryLabelColor
System secondarySelectedControlColor
System selectedControlColor
System selectedControlTextColor
System selectedKnobColor
System selectedMenuItemColor
System selectedMenuItemTextColor
System selectedTextBackgroundColor
System selectedTextColor
System shadowColor
System tertiaryLabelColor
System textBackgroundColor
System textColor
System windowBackgroundColor
System windowFrameColor
System windowFrameTextColor
*/

Guarde el código como changehighlight.m

Abra un terminal, busque el mismo directorio donde guardó el archivo y ejecute el comando clang -W -Wall changehighlight.m -framework AppKit && mv a.out changehighlight

Para restaurar el color, ejecute el comando ./changehighlight Apple Yellow

    
respondido por el Antony 21.12.2015 - 05:48

Lea otras preguntas en las etiquetas