Marque programáticamente si "Compartir iTunes Library XML con otras aplicaciones" está deshabilitado

0

La actualización de iTunes (10.2.0.145) parece haber agregado una nueva función avanzada "Compartir iTunes LIbrary XML con otras aplicaciones" que, si está deshabilitada, ya no genera el Music Library.xml .

Nuestras aplicaciones dependen en gran medida de ese archivo, que según esta documentación indica que el archivo estará disponible. ¿Alguien sabe cómo configurar o verificar si esa preferencia está deshabilitada? He consultado com.apple.iTunes.plist, pero nada parece reflejar esa configuración.

    
pregunta mateuscb 02.07.2015 - 00:37

1 respuesta

1

Tengo una solución para mac. Solución de mac "ShareiTunesLibrary.applescript"

activate application "iTunes"
tell application "System Events"
    tell process "iTunes"
        keystroke "," using command down
        repeat until exists toolbar 1 of window 1
            delay 0.2
        end repeat
        tell window 1
            if title does not contain "Advanced" then
                click button "Advanced" of toolbar 1
            end if
            repeat until its title starts with "Advanced"
                delay 0.2
            end repeat
            tell checkbox "Share iTunes Library XML with other applications" of group 1
                if value is not 1 then
                    click it
                end if
            end tell
            click button "OK"
        end tell
    end tell
end tell

atascado en windows

    
respondido por el Vivek Malik 30.06.2016 - 12:34

Lea otras preguntas en las etiquetas