Ordenar las columnas del buscador invertidas

2

No puedo hacer funcionar esta cosa invertida:

Tell application "Finder" to set the sort direction of the modification date column to reversed
    
pregunta Johnnie 11.03.2013 - 16:37

3 respuestas

4

Hay un error en 10.7 y 10.8 donde cambiar la dirección de ordenación no siempre funciona a menos que primero cambie la columna de ordenación (vea esta pregunta ).

tell application "Finder" to tell list view options of window 1
    set sort column to name column
    set sort column to modification date column
    set sort direction of column modification date column to reversed
end tell
    
respondido por el user495470 12.03.2013 - 07:12
2

Hay algunos enlaces útiles en las respuestas a esta pregunta . Recomendaría utilizar el Inspector de accesibilidad, que forma parte de XCode, para encontrar los nombres de los diversos elementos que intenta abordar con su script. También puede probar algunos de los scripts vinculados aquí , en particular el primero (editado ligeramente):

set appname to "Finder"

set winstuff to "defaultval"
set menustuff to "defaultval"

tell application appname
  activate
end tell

tell application "System Events"
  tell process appname
    set winstuff to entire contents of front window
    set menustuff to entire contents of menu bar 1
  end tell
end tell
--return winstuff & "rrrr" & menustuff -- comment this out to get just winstuff
return winstuff -- comment this out too to get just menustuff
--return menustuff

Lamentablemente, no estoy frente a una Mac en este momento, pero con estas herramientas debería poder averiguar el elemento a tratar.

    
respondido por el MattDMo 11.03.2013 - 20:07
-1

Creo que encontré otro error. Este código no hace que la columna de tipo sea invisible.

tell application "Finder" to set visible of column id kind column of list view options of front window to false
    
respondido por el Johnnie 14.03.2013 - 15:37

Lea otras preguntas en las etiquetas