I'm looking for an app to do this, again. I've not been successful up
till now in finding one.
The trick is to be able to quickly and easily launch 1 to 15 items, or
so, i.e., an app and any number of folders. This is for use with My
Own Backup and the idea would be to be able to launch the app and any
of the folders I need when backing up. Since I don't back everything
up all at once, ever, it's a pain to have to launch everything all at
once.
I have a multiple choice bat that was kindly written up for me, but
it's a pain in the butt to use <g>. I'd really like to find a Windows
alternative to replace all the hand-written bat files I've done up
till now for this purpose.
Thanks much, everyone, in advance!
Finally found a way to do this. I found that the freeware "Open
Thousands of Apps" (OTA) had best GUI for this as unlike one of the
other Kissy apps, it was fairly easy to add shortcuts and apps to and
the window doesn't collapse accordion-style after each launch. There
were only 2 difficulties - one I've learned to live with, the other
got a workaround.
The first problem is that you only have paths to work with. Unlike
some lauchers where you put a path and then a description for what
you're launching and you thereafter just click on the description,
here you only have the path to go on and that can be tricky to
identify what you're actually launching esp. if paths are rather long.
Can live with this though as what this app does is so vital that
overcomes this shortcoming and I've renamed some of the shortcuts to
include as much info as necessary to identify them.
The next thing was not acceptable, however. After launching each
item, OTA no longer was top most so I'd have to click on its icon in
the taskbar to bring it to the front again. This defeated the purpose
of having a fast way to open any particular sequence of apps/folders,
etc., on any given day. An AutoIt script takes care of this problem.
Thanks to the AutoIt forum for help on the topmost function, it has
worked ever since they helped me a bit of the code!
Only one thing, once you launch OTA via the AutoIt script, nothing
else can be topmost and you can't really do anything else then while
its up and running. However, this isn't a problem as you launch
whatever you need to and close OTA anyway.
So I find that this whole method works perfectly enough for me and has
made my life much easier.
Here's the AI script:
Local $Title = "Open Thousands of Apps - Drag - Drop - Click"
Run("D:\AGENTF~1\000-LA~1\OPMYAPV9.EXE")
WinWait($Title)
WinSetOnTop($Title, "", 1)
Opt("WinWaitDelay", 0)
While WinExists($Title)
WinActivate($Title)
WinWaitNotActive($Title)
WEnd
Only line 2 needs changing for this to work for anyone and in any
situation. The 2nd line is the path to where the actual OTA exe is
located so just change the path to it and you're set to go.
I'm on Win98SE so this should work on any OS, too, I imagine.
Lastly, for each tab you add a path to, OTA creates an LST file with
the corresponding alphabet letter. i.e., if you drag and drop a path
to something in the C tab, you'll see a file called C.LST created. If
into B, you get B.LST, etc.
Those LST files along with the INI file is all you need to back up in
order to always have a working copy of this particular launching
instance, something I need to do as I reformat my computer once or
twice a year.
Enjoy!

D