Re: Please Help Me...
Re: Please Help Me...
- Subject: Re: Please Help Me...
- From: Jason Bourque <email@hidden>
- Date: Fri, 03 Nov 2000 21:34:50 -0500
On OS 9 I use this
set RemoteFinder to application "Finder" of machine "eppc://168.66.82.253"
property MyPassword : "adfaf"
property KeychainName : "gafadfgadf"
tell application "Keychain Scripting"
try
unlock keychain KeychainName with password MyPassword
on error
display dialog "Incorrect keychain password for " & KeychainName
buttons {"OK"} default button {"OK"} with icon 2
end try
end tell
using terms from application "Finder"
tell RemoteFinder
beep 2
try
list every process
end try
set listprocesses to every process as list
if listprocesses contains "Compliance Script - folders" then
try
tell application "Browse the Internet" to run
end try
end if
end tell
end using terms from
Hope this helps
Jason Bourque