Kemungkinan peningkatan pada skrip ini akan mengubah run handler untuk menggunakan file yang saat ini dipilih dari Finder, seperti:
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
Anda juga dapat mengedit [aplikasi] / Isi /Info.plist untuk ditambahkan
<key>LSUIElement</key>
<true/>
Tepat sebelum </dict> terakhir. Ini berarti aplikasi akan berjalan di latar belakang, dan tidak akan muncul ke depan ketika Anda mengkliknya.