That is admittedly ridiculous.
Any ideas?
FF
Use Opera. The link above pasted into Opera will download.
>FF
>
Ok, I got it, but it's a javascript solution. Here's what I did:
Merge savepdf.reg with registry.
begin savepdf.reg:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\Save &PDF]
@="C:\\WINNT\\WEB\\savepdf.htm"
end savepdf.reg
That adds a menu item to context menu "Save PDF" which invokes file
C:\WINNT\WEB\savepdf.htm
begin savepdf.htm:
<HTML>
<SCRIPT LANGUAGE="JavaScript" defer>
var parentwin = external.menuArguments;
var text = '<A HREF="' +
parentwin.location.href +
'">PDF Link<A>';
parentwin.document.write(text);
</SCRIPT>
</HTML>
end savepdf.htm
You save that file to the name and path specified in the .reg file.
So, to operate this sucker, you right click on that empty frame where the
pdf would be and choose Save PDF. This seems to get rid of the empty
picture box looking thing and puts in a link named "PDF Link" which can
be right clicked and saved via "Save Target As."
At least it does for me. But I only tested it on that site. First I had a little
window with the link pop-up, and it worked, but I tried this and it worked
better!
FF