1. Add-ons
for Firefox
2. Extensions
3. CHM Reader
CHM Reader 0.2.3
Code: Select all
https://addons.mozilla.org/en-US/firefox/addon/3235/
@
TheQwerty, this focus command looks enough for me in the first steps.
Tools -> Customize Keyboard Shortcuts -> Category: Miscellaneous
-> Focus Functions ->
Focus First Selected Item
Description:
In the List, move the focus to the first selected item from top,
and move it into view if necessary.
Command ID:
#1048;
<curitem> current (selected & focused) list item (full path)
WinRAR Help.chm -> Command line mode -> Commands -> Alphabetic commands list
e
Extract archived files, ignoring paths, to the current or a specified folder.
@
zer0, Winrar doesn't unrar file if I use your run command
Here is what works:
Selfilter "angol", f;#1048;
run "C:\Program Files\WinRAR\WinRAR.exe" "e" "<curitem>",,1;
START FOLDER:
1
Stargate Universe - 02x06 - Trial and Error.FQM.En.srt
Stargate Universe s02e06 (hdtv-fqm) magyar.zip
Stargate Universe s02e06 (hdtv-fqm, 720p-ctu) angol.zip
stargate.universe.s02e06.hdtv.xvid-fqm.avi
SCRIPT:
Code: Select all
Selfilter "*.avi", f;#1048;
$a = "<curbase>";
Selfilter "*.srt", f;#1048;
copyto ("1");
rename b, $a;
rename b, "*.ENG2";
Selfilter "angol", f;#1048;
run "C:\Program Files\WinRAR\WinRAR.exe" "e" "<curitem>",,1;
Selfilter "angol", f;#1048;
moveto ("1");
Selfilter "720p", f;#1048;
$count = Get("CountSelected");
if $count == 1 {
moveto ("1");
}
RESULTS:
1
Stargate Universe - 02x06 - Trial and Error.FQM.English.C.orig.Addic7ed.com
.srt
Stargate Universe s02e06 (hdtv-fqm) magyar.zip
stargate.universe.s02e06.hdtv.xvid-fqm.avi
stargate.universe.s02e06.hdtv.xvid-fqm
.ENG2.srt
Question: How can I select&focus the .srt file NOT ending with .ENG2.srt
(the
.srt file has always different basename, so
com.srt is not good)
(and the .srt file and .ENG2.srt can have
different order)