Just putting together simple AppleScripts to login to various https sites.
Wonder if its possible to have this:
tell application “Firefox”
activate
end tell
property target_URL : “https://www.blahblahblah.com”
open location target_URL
tell application “System Events”
[b]keystroke[/b] "username"
[b]keystroke[/b] [b]tab[/b]
[b]keystroke[/b] "password"
[b]keystroke[/b] [b]return[/b]
end tell
Read like this:
[b]keystroke[/b] "¢¢¢¢¢¢¢"
[b]keystroke[/b] [b]tab[/b]
[b]keystroke[/b] "¢¢¢¢¢¢¢"
[b]keystroke[/b] [b]return[/b]
end tell
[color coded syntax by [url=http://homepage.mac.com/jonn8/as/]Convert Script to Markup Code[/url]]