Applescript: duplica la selezione (cartella) sul desktop e sposta la cartella in una posizione diversa

0

Prima di tutto, sono un noob di mele ;-) Quello che sto chiedendo è semplice ma quasi impossibile da eseguire. Vedi lo script qui sotto.

tell application "Finder"
    set selected_items to selection
    set the defaultPath to path to desktop folder as alias
    duplicate selection to defaultPath

    --I want to take take selection variable that is duplicated to the desktop and move that folder icon to the bottom of my screen.
    set desktop position of selection to {1400, 1200}
end tell

Ecco l'errore che ottengo ---- > errore "Il Finder ha ricevuto un errore: Impossibile impostare la posizione di selezione del desktop su {1400, 1200}." numero -10006 dalla posizione desktop della selezione

Qualsiasi aiuto è molto apprezzato

    
posta john 15.07.2015 - 19:36
fonte

1 risposta

1
tell application "Finder"
    set desktop position of (selection as alias) to {200, 200}
end tell
    
risposta data 16.07.2015 - 05:27
fonte

Leggi altre domande sui tag