এই স্ক্রিপ্টের একটি সম্ভাব্য উন্নতি হ'ল অনুসন্ধানকারীর কাছ থেকে বর্তমানে নির্বাচিত ফাইলগুলি ব্যবহার করতে রান হ্যান্ডলারটি পরিবর্তন করা হবে:
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
আপনি যোগ করতে [অ্যাপ্লিকেশন] / বিষয়বস্তু / আইএনএফ.ও.লিস্ট সম্পাদনা করতে পারেন
<key>LSUIElement</key>
<true/>
শেষ </ ডিসিক্ট> এর ঠিক আগে। এর অর্থ হ'ল অ্যাপটি ব্যাকগ্রাউন্ডে চলবে এবং আপনি এটি ক্লিক করার সময় সামনে আসবে না।