Not sure if you're still looking for something, but here's a post I wrote a while back:
[Opening Folders in Finder Tabs](http://blog.qsapp.com/post/66560143350/opening-folders-in-finder-tabs) Still works, with retro Finder icon too. :) Script: <code> *on* *open* _file *try* *tell* *application* "Finder" *to* *activate* *delay* 0.25 *if* (*count* *of* _file) > 1 *then* *error* "Only one file or folder for now, I'm afraid…" number 1 *tell* *application* "System Events" *tell* *process* "Finder" *to* *click* *menu item* "New Tab" *of* *menu* "File" *of* *menu bar* 1 *end* *tell* *tell* *application* "Finder" *if* *class* *of* _file *is* *folder* *then* *set* target *of* *window* 1 *to* _file *else* *set* _container *to* *container* *of* *item* 1 *of* _file *as* *text* *if* _container = ":" *then* *set* _container *to* "Volumes:" *set* target *of* *window* 1 *to* *alias* _container *delay* 0.3 *set* selection *to* _file *delay* 0.1 *end* *if* *end* *tell* *on* *error* a number b *tell* *application* "Finder" *to* *display dialog* a *end* *try* *end* *open* </code> On Tuesday, 29 July 2014 02:11:49 UTC+9, Leo wrote: > > All, > > That's a simple question but i couldn't find the answer in QS archives. > I'm tired of so many Finder windows and I wanna work with a single one. > Namely, i wanna something like "Open directory in the current Finder" > window? > > Thanks in advance > -- 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.
