Re: internet explorer applescript ....
Re: internet explorer applescript ....
- Subject: Re: internet explorer applescript ....
- From: JJ <email@hidden>
- Date: Tue, 12 Mar 2002 20:09:04 +0100
>
Greetings
>
>
I am trying to workout or find a simple applescript that can :
>
>
>
load a webpage in explorer... eg.
>
>
http://www.site.com/users/Preview.asp?FileID=111112
>
>
and save it as a local file.
>
>
eg. 111112.html
>
>
>
and then go on to the next page in the series.
>
>
http://www.site.com/users/Preview.asp?FileID=111113
>
>
and save it as a local file
>
>
eg. 111113.html
>
>
>
and so on....
>
>
A massive thanks in advance for any help
>
tudor
##### NOT TESTED, BUT SHOULD WORK #####
tell application "Internet Explorer"
set the_previews to 20
set the_folder to (path to desktop as text)
set x to 1
repeat the_previews times
set this_preview to (111112 + x) as text
GetURL ("
http://www.site.com/users/Preview.asp?FileID=" &
this_preview) to (the_folder & this_preview & ".html")
set x to x + 1
end repeat
end tell
##### NOT TESTED, BUT SHOULD WORK #####
JJ
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.