0 votos

script para agrupar y ordenar el contenido de las carpetas

Estoy intentando hacer un botón en la barra de herramientas del buscador que agrupe los elementos de las carpetas abiertas por tipo y los ordene por nombre. He encontrado un script en línea que ive modificado que parece hacer esto, t se detiene después de cambiar a la vista de iconos y no parece hacer nada más.

tell application "Finder"

    activate

    tell the front Finder window
        set the current view to icon view
        set the toolbar visible to true
    end tell

    tell icon view options of front Finder window
        set properties to {sort column:name column, sort direction:normal, text size:12, uses relative dates:true, calculates folder sizes:true, shows icon preview:true}
    end tell

    tell application "System Events" to tell process "Finder"
        tell menu item "Show View Options" of menu of menu bar item "View" of menu bar 1 to if exists then click
        tell checkbox "Always open in icon view" of window 1 to if (exists) and value is 0 then click
        tell checkbox "Always open in list view" of window 1 to if (exists) and value is 1 then click
        tell checkbox "Date Modified" of group 1 of window 1 to if (exists) and value is 1 then click
        tell checkbox "Date Created" of group 1 of window 1 to if (exists) and value is 1 then click
        tell checkbox "Size" of group 1 of window 1 to if (exists) and value is 1 then click
        tell checkbox "Kind" of group 1 of window 1 to if (exists) and value is 0 then click
        tell checkbox "Version" of group 1 of window 1 to if v(exists) and alue is 1 then click
        tell checkbox "Comments" of group 1 of window 1 to if (exists) and value is 1 then click
        tell checkbox "Label" of group 1 of window 1 to if (exists) and value is 1 then click
    end tell

end tell

0voto

alls0rts Puntos 26

Supongamos que ha introducido el script en Automator.app como acción rápida. Después de editar el script de Apple, pulse la tecla hammer () para compilar y reformatear el código. Si existen errores (como es el caso) obtendrá un error y el código no se reformateará.

AppleAyuda.com

AppleAyuda es una comunidad de usuarios de los productos de Apple en la que puedes resolver tus problemas y dudas.
Puedes consultar las preguntas de otros usuarios, hacer tus propias preguntas o resolver las de los demás.

Powered by:

X