Re: getting source in default web browser
Re: getting source in default web browser
- Subject: Re: getting source in default web browser
- From: David Hood <email@hidden>
- Date: Tue, 15 Apr 2003 09:50:32 +1200
On 14/4/03 at 11:30 PM, email@hidden (John Cochrane) wrote:
>
but am struggling to get the text and name of the web page in Explorer.
Well, the name is the second item in GetWindowInfo (the first item is the
address). Here is a script that finds any open windows with the title Google.
tell application "Internet Explorer"
repeat with eachwindow in ListWindows
set InfoCollection to GetWindowInfo eachwindow
if (item 2 of InfoCollection = "Google") then
--do something with the google window
end if
end repeat
end tell
Regards,
David Hood
_/_/_/_/_/_/
Research Fellow, The Caversham Project, University of Otago
http://www.otago.ac.nz/nzpg/caversham
_______________________________________________
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.