Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

HOW TO AUTOMATE BROADBAND INTERNET LOGIN

I have a broadband internet connection & the ISP provides a broadband dialer which I have to click on my desktop & a screen comes up asking or username & password. The dialer remembers my username & password in windows pc but not on a mac. So i want to automate this process with a single click.
Can anyone help me with a applescript or a automator workflow for this purpose?

Posted on Sep 17, 2005 8:11 AM

Reply
4 replies

Sep 18, 2005 1:53 PM in response to Sachin Vijan

Hi Sachin,

I can't find the relevant software so therefore I cannot see what to do.

You may have to tweak this a bit, first you will need to turn on AppleScript GUI Scripting. To turn it on go to Applications-->AppleScipt-->AppleScript Utility and click enable GUI scripting.

Now copy this script into ScriptEditor and then change the 'bits' to suit...

-------------------------------------------------------------
tell application "Finder"
activate
open document file "broadbandUI.jar" of folder "Desktop" of folder "your_username" of folder "Users" of startup disk
end tell
tell application "System Events"
tell process "Jar Launcher"
keystroke "your username"
keystroke tab
keystroke "your password"
keystroke tab
keystroke return
end tell
end tell
-------------------------------------------------------------

You will have to play around with the order etc as I can't see the App myself...

hope this leads you in the right direction.

Regards

Ric

HOW TO AUTOMATE BROADBAND INTERNET LOGIN

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.