Re: Scripting Personal Web Sharing
Re: Scripting Personal Web Sharing
- Subject: Re: Scripting Personal Web Sharing
- From: Anthony Abud <email@hidden>
- Date: Mon, 07 May 2001 16:36:31 -0400
>
Hi,
>
>
I am trying to script Personal Web Sharing 1.5 under OS 9.0.4
>
>
Essentially, I want to turn it on and off. But I can't seem to record it in
>
the Script editor -- and I can't guess the right code (e.g., copy from File
>
Sharing).
>
>
I currently am trying:
>
>
tell application "Web Sharing"
>
activate
>
set websharing to true
>
quit
>
end tell
>
>
This runs, but does not work :-(
>
>
Any ideas?
>
>
Thanks,
>
Glenn.
>
_______________________________________________
>
applescript-users mailing list
>
email@hidden
>
http://www.lists.apple.com/mailman/listinfo/applescript-users
You could try writing two scripts:
tell application "Web Sharing Extension" to run
and:
tell application "Web Sharing Extension" to quit
and then scheduling them with iDo.
...this is what someone gave me. I tried it and it works. =)