(* A script to create a new named file in the current Finder directory using Quicksilver [1] Written by 31d1, January 12, 2006. www.cutup.org/anize/ Save this script to ~/Library/Application Support/Quicksilver/Actions/New File Here.scpt I had to quit and reopen Quicksilver for it to find the script You might need to have "Enable access for assistive devices" enabled under Universal Access in System Preferences. To use: 1. activate Quicksilver 2. type "." (i.e. hit the period key) 3. type the file name you want to create (i.e. newfile.txt) 4. press tab 5. start typing "File Here" 6. once Quicksilver finds "File Here.scpt", press return 7. A new file will be created in the front Finder window, or on the Desktop if no window is open [1] http://quicksilver.blacktree.com inspired by Simon Dorfman's EasyFind script (www.SimonDorfman.com). Thanks man! *) using terms from application "Quicksilver" on process text t tell the application "Finder" try set currFolder to (folder of the front window as string) on error set currFolder to desktop as string end try end tell do shell script "touch \"" & POSIX path of currFolder & t & "\"" end process text end using terms from