复制以下script,建立一个新html文件,例如名叫 jc_all_images.htm, 并把它放到Flashget安装文件夹下
<script language="VBScript">
'Great thanks to Vladimir Romanov(Author of ReGet Pro), Modify by irtpop
On Error Resume Next
set JetCarCatch=CreateObject("JetCar.Netscape")
if err<>0 then
MsgBox("FlashGet not properly installed!"+ vbCrLf+"Please Install FlashGet again")
else
set images = external.menuArguments.document.images
ReDim params(images.length*2)
params(0)=external.menuArguments.document.Url
for i = 0 to images.length-1
params(i*2+1)=images(i).src
params(i*2+2)=images(i).alt
next
JetCarCatch.AddUrlList params
end if
</script>
2.
打开 regedit, 到
HKEY_CURRENT_USER/Software/Microsoft/Internet Explorer/MenuExt
你应该可以看到以下的key
Download All by FlashGet
Download using FlashGet
创建一个新key -
Download All Images by FlashGet
Default = 刚建立的html文件路径
创建一个新DWORD
contexts = f3
或参看Download All by FlashGet
3.
打开IE,右键->Download All Images by FlashGet
一个新的窗口打开了,接着的你应该知道怎样做了...
转自TLF,看到不错所以贴上来让大家GX一下。