No puedo hacer funcionar esta cosa invertida:
Tell application "Finder" to set the sort direction of the modification date column to reversed
No puedo hacer funcionar esta cosa invertida:
Tell application "Finder" to set the sort direction of the modification date column to reversed
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
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.
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
Lea otras preguntas en las etiquetas macos finder applescript