Re: AppleScript Help
Re: AppleScript Help
- Subject: Re: AppleScript Help
- From: Graff <email@hidden>
- Date: Thu, 03 Jun 2004 11:27:27 -0400
You can find out the name for the startup volume by doing:
----
tell application "Finder"
set theStartup to startup disk
end tell
----
If you want to move stuff into the extensions folder under Mac OS 9 I
believe you can just do:
----
tell application "Finder"
move theFile "path:to:some:file" to (path to extensions folder)
end tell
----
Under Mac OS X you need to do this:
----
tell application "Finder"
move theFile to (path to extensions folder from Classic domain)
end tell
----
- Ken
On Jun 3, 2004, at 9:18 AM, Mark Thomas wrote:
I'm a fairly new to apple script, and I was wondering if I can write
an
apple script which will copy files over the extensions folder within
MacOS
9.x environment ???, as in MacOS-X I'm using a BSD script to do the
work.
Is that possible ???. One thing I did thik could be an issue is that
I
might not know what the users HD is called for the path, is that an
issue
???.
I'm building up an installation package and this is why I need to
copy
stuff into extensions folder.
_______________________________________________
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.