• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: internet explorer applescript ....
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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.

  • Prev by Date: FW: Questions questions...
  • Next by Date: Re: [OFF] Forging To headers in list posts (was Re: Spam Filter Script?)
  • Previous by thread: Re: internet explorer applescript ....
  • Next by thread: Scripting Java apps?
  • Index(es):
    • Date
    • Thread