Link to home
Start Free TrialLog in
Avatar of pretentious_indifference
pretentious_indifference

asked on

Saving urls of open webpages on exit from IE7

Basically, the problem is how to make sure that if IE7 is shut down (in my case programmatically) that all at that point open webpage urls are saved in say, folder X. Just Urls, or may be shortcuts to them - does not matter.

Cheers
Avatar of Badotz
Badotz
Flag of United States of America image

Is this from a page you control, or is this just an "in general" wish?
Avatar of war1
Hello pretentious_indifference,

You can save sessions on shutdown with IE7Pro
http://www.dashken.net/index.php?/archives/247-How-To-Always-Save-Tab-Session-In-Internet-Explorer-7.html

Hope this helps!
war1
ASKER CERTIFIED SOLUTION
Avatar of 3li0
3li0

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of pretentious_indifference
pretentious_indifference

ASKER

thanks for all of those, but I actually was after some sort of programmatic solution like a script or something. in that case I can include it in my programmatic solution (since IE7 is shut down by the script).

cheers.
You can sink the window.onunload event, and do your magic within that handler:

<script type="text/javascript">
/*
    all your wonderful script
    goes here,
    and then add
*/
function wrap_it_up()
{
/*
    final script here
*/
}

window.onunload = wrap_it_up;
</script>
RESOLUTION:
No programmatic solution is found.