First of all, Thank you. i used to love flashfolders, but with W10, it is hit and miss, while QuickSwitch has so far not failed once.
my question is with the integration of qttabbar (which can be scripted)
i have found a way to list all the open qttabs, in explorer which can be invoked externally with a js script.
`var qs = new ActiveXObject( "QTTabBarLib.Scripting" );
var wnd = qs.activewindow;
if( wnd )
{
wnd.InvokeCommand( "SetClipboardAllTabPaths");
}
else
{
wnd = qs.invokeCommand( "SetClipboardAllTabPaths");
}
`
this basically gets qttb to copy all the open tabs paths in the clipboard.
what i think would be amazing, is being able to include those paths inside QuickSwitch
how easy or difficult would this be?
First of all, Thank you. i used to love flashfolders, but with W10, it is hit and miss, while QuickSwitch has so far not failed once.
my question is with the integration of qttabbar (which can be scripted)
i have found a way to list all the open qttabs, in explorer which can be invoked externally with a js script.
`var qs = new ActiveXObject( "QTTabBarLib.Scripting" );
var wnd = qs.activewindow;
if( wnd )
{
wnd.InvokeCommand( "SetClipboardAllTabPaths");
}
else
{
wnd = qs.invokeCommand( "SetClipboardAllTabPaths");
}
`
this basically gets qttb to copy all the open tabs paths in the clipboard.
what i think would be amazing, is being able to include those paths inside QuickSwitch
how easy or difficult would this be?