Re: Remote Access scripting
Re: Remote Access scripting
- Subject: Re: Remote Access scripting
- From: Peter Bunn <email@hidden>
- Date: Tue, 2 Jul 2002 18:41:00 -0500
Gnarlodius recently commented:
>
You are entirely correct, RA "Status" is broken in 9.1
However, PPP status as of 9.0 was still alive and well, despite the
contol panel name change. The following worked there for me:
Hope you can use these on 9.1.
Peter B.
----------
--Connect
on run
if ((state of (PPP status)) = "idle") then
try
PPP connect
on error
end try
end if
end run
-----
--Disconnect
on run
if ((state of (PPP status)) "idle") then
try
PPP disconnect
on error
end try
end if
end run
----------
_______________________________________________
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.