Thanks. I finally had chance to do some AppleScript. Here you go below. In 
fact, it leaves two Finder windows open. 

Now, I was wondering. Is there any way of set my script to be the default 
action whenever I have folders in my 1st pane? Alternatively, is there a 
way of replace the "Open" action "source code? I have search that in QS 
folder in vain.

Thanks again 

*using terms from* *application* "Quicksilver"

*on* *open files* theFiles

 -- try

 *set* filePath *to* *item* 1 *of* theFiles

  *tell* *application* "Finder"

 *activate*

 *repeat* *while* *window* 2 *exists*

  *close* *window* 2

 *end* *repeat*

 *open* filePath

 *tell* *the* *front* *Finder window*

  *set* toolbar visible *to* *false*

  *set* statusbar visible *to* *false*

  *set* *the* sidebar width *to* 0

  *set* *the* current view *to* *column view*

  *set* *the* bounds *to* {36, 116, 511, 674}

 *end* *tell*

 *end* *tell*

 -- on error a number b

 -- activate

 -- display dialog a with title "error with your QS action script"

 -- end try

  *end* *open files*

 *on* *get direct types*

 *return* {"NSFilenamesPboardType"}

*end* *get direct types*

*end* *using terms from*

On Wednesday, July 30, 2014 12:16:21 PM UTC-3, Rob McBroom wrote:
>
> On 30 Jul 2014, at 10:07, Leo wrote: 
>
> > Thanks for your answer. I knew (and still don't know) much about 
> > AppleScripting. I came up with that. It is not working accordingly, 
> > though. 
> > Any clue? Thanks 
>
> I don’t do much with AppleScript either, but Google led me to this 
>
>
> http://superuser.com/questions/655629/how-can-i-open-a-folder-in-the-current-finder-window
>  
>
> Seems like more or less what you want. 
>
> -- 
> Rob McBroom 
> http://www.skurfer.com/ 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Quicksilver" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/blacktree-quicksilver.
For more options, visit https://groups.google.com/d/optout.

Reply via email to