> what I'm missing here?  I really miss this option.
I don't have a solution but this I use wrote this script instead of
using Quicksilver:
This script will not work with all applications but it will work with
many applications including Pages. I have assigned this script a
shortcut Option+O. You can assign a suitable hotkey.
try
        set thelist to {}
        tell application "System Events"
                set {name:theApp, bundle identifier:theIdentifier} to (get 1st
application process whose frontmost is true)
        end tell

        repeat with i from 2 to 10

                set documentRecords to (do shell script "defaults read " &
theIdentifier & " NSRecentDocumentRecords")


                set {TID, text item delimiters} to {text item delimiters, "<"}

                try
                        set alis to text item i of documentRecords
                end try
                set text item delimiters to ">"

                set alis to text item 1 of alis

                set text item delimiters to space
                set alis to text items of alis
                set text item delimiters to ""
                try
                        set alis to (run script "«data alis" & (alis as text) & 
"»")
                end try
                set text item delimiters to TID
                set alis to alis as text

                set end of thelist to alis

        end repeat
        tell me to activate
        set chooseFile to (choose from list thelist with title "Open Recent"
with prompt "Choose File(s):" with multiple selections allowed)

        set theresult to the result
        if theresult is not false then
                repeat with aitem in theresult
                        tell application theApp
                                activate
                                open aitem
                        end tell
                end repeat
        end if

on error e
        tell me to activate
        display dialog e
end try
tell application theApp to activate
---needed when nothing is chosen from list

Reply via email to