Re: rename a disk - Mac OS 9
Re: rename a disk - Mac OS 9
- Subject: Re: rename a disk - Mac OS 9
- From: webguide <email@hidden>
- Date: Fri, 25 Oct 2002 08:37:23 +1000
G'day Charles
>
I'm trying to write a script that will rename one of my disks
>
(Macintosh HD) to Mac OS 9. But I keep running in to issues.
>
tell application "Finder"
>
rename disk "Macintosh HD" to "Mac OS 9"
>
end tell
Sure would be quicker just to type it but:
tell application "Finder"
set mydisk to startup disk
set name of mydisk to "whatever"
end tell
seems to work here (but I'm on Jag)
cheers
kim
_______________________________________________
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.