2010-07-22 8 views

risposta

9

Non posso prendermi il merito di averlo scritto, ho rimosso il codice da uno response to a post nei forum MacRumors.

tell application "Finder" 
    set Names to paragraphs of (read (choose file with prompt "Pick text file containing track names")) 
    repeat with nextLine in Names 
    if length of nextLine is greater than 0 then 
     --Do something with the next name, which is stored in "nextLine" 
    end if 
    end repeat 
end tell 

credito Codice originale per HexMonkey sul forum MacRumors.

+3

Non c'è bisogno di dire al Finder di fare queste cose. Dovresti togliere tutto il codice dal blocco del Finder. Applescript è in grado di gestire il codice stesso e il Finder è spesso occupato con altre attività, pertanto potrebbe addirittura rallentare il codice. – regulus6633

+0

Buono a sapersi. Dovrei davvero imparare io stesso il mele uno di questi giorni. : P – kdmurray