Reply to "Re: Scripting with 'Internet Explorer'"
Reply to "Re: Scripting with 'Internet Explorer'"
- Subject: Reply to "Re: Scripting with 'Internet Explorer'"
- From: email@hidden
- Date: Thu, 13 Feb 2003 18:53:51 -0500
Thank you Andrew - both of your suggestions are exactly what I needed.
>
1)
>
Try: tell application "Internet Explorer.app" or tell application "Macintosh HD:Applications:Internet Explorer.app:"
>
>
2)
>
You can pass usernames and passwords in URLs in the form: OpenURL "http://username:email@hidden/path/index.html".
I noticed I still had an additional Execution Error after making the above suggestions. My original Code was:
set baseURL to "
http://lists.apple.com/archives/x11-users/2003/Jan/30/"
OpenURL baseURL --toWindow 0
set mySourceText to GetSource
it is now:
set baseURL to "
http://archives:email@hidden/archives/x11-users/2003/Jan/30/"
OpenURL baseURL --toWindow 0
delay 4
set mySourceText to GetSource
By adding the 'delay 4' the accessed Web Page has sufficient time to download before the 'set mySourceText to GetSource' Line is executed. It was the 'GetSource' Command that was generating the Execution Error.
Again, thank you for your assistance.
--
SJWL
_______________________________________________
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.