หากคุณใช้อัลเฟรดคุณสามารถเลือกรายการกด⌥⌘ \ และเลือกคัดลอกพา ธ ไปยังคลิปบอร์ด
คุณสามารถกำหนดทางลัดให้กับสคริปต์เช่นนี้:
tell application "Finder"
set the clipboard to POSIX path of (insertion location as alias)
end
นี่จะเป็นการคัดลอกพา ธ ของรายการที่เลือกทั้งหมด:
set l to {}
tell application "Finder" to repeat with f in (get selection)
set end of l to POSIX path of (f as alias)
end repeat
set text item delimiters to linefeed
set the clipboard to (l as text)
มีข้อบกพร่องใน 10.7 และ 10.8ซึ่งการเลือกตำแหน่งการแทรกและคุณสมบัติเป้าหมายหมายถึงหน้าต่างด้านหน้าสุดที่สองหลังจากเปิดหน้าต่างใหม่ มันมีผลต่อทั้งสคริปต์และอัลเฟรด แต่ไม่ได้ให้บริการอัตโนมัติ คุณสามารถย้ายโฟกัสไปยังแอปพลิเคชันอื่นแล้วย้อนกลับก่อนที่จะทำการเลือก:
activate application "SystemUIServer"
activate application "Finder"