I don't know if this is even possible, but I've played around with AutoHotKey a bit and have found tremendous value in the "Favorite Folders" script. When you activate the "Favorite Folders" hotkey
good find, favorite folder is a really nice one
but being a FARR lover, i really wanted to use FARR !
so i found a workaround for the time being... (i've been using it for almost a year i think...)
i always had a "favorite folder" alias which is set as below :
regex pattern
^f (.*)
result
Favorites search $$1 | dosearch +folder_fav +open_fav -alias $$1
+folder_fav is a folder containing shortcuts to my favorite folders
+open_fav is an action modifier which opens an authotkey script :
Open | C:\_Garbha\Program Files\OpenFav.ahk "$$1"
and here is the autohotkey script (my explorer is directory opus) :
file = 1
{
Run, C:\Program Files\GPSoftware\Directory Opus\dopusrt
.exe /cmd Go
"C:\" NEWTAB
}
Run, C:\Program Files\GPSoftware\Directory Opus\dopusrt
.exe /cmd Go
"%1%" NEWTAB
}
should only be
Run, C:\Program Files\GPSoftware\Directory Opus\dopusrt.exe /cmd Go "%1%" NEWTAB
but for some reason a shortcut to C:\ turns out to be C:".... no idea why (FARR bug ?)
then i discovered a great tool ! Flashfolder
http://zett42.de/flashfolder/so now i use FARR in conjunction with autohotkey and flashfolder to achieve this goal...
here is the script :
file = 1
if WinExist
("ahk_class FlashFolder_3832795") {
{
}
}
}
{
Run, C:\Program Files\GPSoftware\Directory Opus\dopusrt
.exe /cmd Go
"C:\" NEWTAB
}
Run, C:\Program Files\GPSoftware\Directory Opus\dopusrt
.exe /cmd Go
"%1%" NEWTAB
}
}
basically what this does :
if flashfolder exists (that is a open/save dialog exists) then autohotkey changes the flash folder path to the one coming from FARR (then enter to reflect that in the open/save dialog)
if not then it opens the folder in my explorer
works flawlessly
of course ruling out flashfolder of the equation would be even greater !
i'm no windows programmer, and i don't know how to change the location of the open/save dialog...
if you use the file name box to change the path then you loose the filename...