Một cải tiến có thể có trong tập lệnh này sẽ là thay đổi trình xử lý chạy để sử dụng các tệp hiện được chọn từ Finder, như vậy:
on run
tell application "Finder" to set sel to selection
open sel
end run
on open the_files
repeat with i from 1 to (count the_files)
try
set posix_path to POSIX path of (item i of the_files as alias)
if posix_path ends with "/" then set posix_path to ¬
text 1 thru -2 of posix_path
try
do shell script "ln -s " & quoted form of posix_path ¬
& " " & quoted form of (posix_path & ".sym")
on error
try
do shell script "ln -s " & quoted form of posix_path ¬
& " " & quoted form of (posix_path & ".sym") with administrator privileges
end try
end try
end try
end repeat
end open
Bạn cũng có thể chỉnh sửa [application] /Contents/Info.plist để thêm
<key>LSUIElement</key>
<true/>
Ngay trước khi </ dict> cuối cùng. Điều này có nghĩa là ứng dụng sẽ chạy ở chế độ nền và sẽ không xuất hiện trước khi bạn nhấp vào ứng dụng.