I am writing an Applescript to launch a music stream from iCal. Is there a way to click the 23 link on a page? I can't just open the URL because its a special pop-up window. (I've already tried grabbing the URL from the source but it doesnt work that way
(
Read more... )
Comments 5
Reply
Reply
open location "file:///" & POSIX path of (path to desktop folder) & "blank.html"
Reply
tell application "Safari"
make new document at front of documents with properties {URL:"about:blank"}
end tell
Reply
Reply
Leave a comment