ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Post New Requests Here

IDEA: Drag Drop URL or Paste to save target to predefined destination

<< < (4/5) > >>

shmuel1:
Active scripting is probably why you can't save some webpages. See this article:
http://www.techsupportforum.com/forums/f10/cant-save-web-page-right-click-disabled-by-web-page-476334.html
I might be able to make a script to quickly disable/enable active scripting. Let me know if you are interested.

The other option is just to make a PDF file out of the page.
Here's a free program to print almost anything to PDF format:
http://www.bullzip.com/products/pdf/info.php

magician62:
Your probably right on the active scripting. Maybe it can be disabled at the beginning of the current script and re-enabled at the end. I suggest that method as I assume it may be left permanently disabled once run?

PDF doesn't really suit for the end result. Part of the concept was that in some of my use cases there is image content on webpages I want to save for future reference, and by saving in full HTML the required images from the destination page can be easily extracted from the created folder of files.

Have used the util for a couple of hours today, and it seems to work quite well, filename clashes seem to depend on which website I am using, so if it is possible to add an automatic rename option when it finds a clash, that would be superb.

shmuel1:
OK, I have to work on those 2 items.

shmuel1:
I added these lines to disable active scripting for the current windows user and enable it afterwards:

--- Code: AutoIt ---RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\1", "1400", "REG_DWORD", "3") ; disables active scripting in the "Internet Zone"RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\1", "1400", "REG_DWORD", "0") ; enables active scripting in the "Internet Zone"I tested it on my computer and it did change the registry setting. Test it with some webpages that you couldn't save before and see if you can save them now.
I also added $answer = 1 to make it save complete webpages without asking you for the format, and I added sleep(3000) before saving the webpage to allow the page to load. If you use the attached (instead of editing your version), remember to edit the Hotkey.

In case you are interested, here's the page I used that explains how to disable active scripting via the registry.
http://www.cs.kuleuven.be/cs/system/security/howto/Windows/active-scripting.html

magician62:
Just downloaded the update, will give a thorough test over the weekend :)

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version