Re: Microsoft Word X always crashes...Update
Re: Microsoft Word X always crashes...Update
- Subject: Re: Microsoft Word X always crashes...Update
- From: David Wignall <email@hidden>
- Date: Wed, 04 Jun 2003 16:55:46 +1200
on 4/6/2003 3:56 PM, Joe Szedula at email@hidden wrote:
>
tell application "Finder"
>
set myHome to (home as text)
>
set CRD to (myHome & ,
>
"Library:Preferences:Microsoft:Carbon Registration Database") ,
>
as text
>
if file CRD exists then
>
delete file CRD
>
end if
>
end tell
More straightforward:
set CRD to ((path to preferences) as string) & "Microsoft:Carbon
Registration Database" as alias -- one line
tell application "Finder"
if CRD exists then
delete CRD
end if
end tell
--
Dave
_______________________________________________
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.