How to stop the Finder from going ding?

Hi, I would like to do this without the Finder going ding.:rolleyes:

tell application "Finder"
	set home_path to home as text
	set source to alias (home_path & "Library:Cookies:Designated Cookies:Cookies.plist")
	set destination to home_path & "Library:Cookies:"
	tell application "Finder" to duplicate source to destination with replacing
end tell

I’m willing to delete the ~Library/Cookies/Cookies.plist file if that would help.
Tom

Operating System: Mac OS X (10.5)

Hi,

try this


do shell script "/bin/cp ~/Library/Cookies/Designated\\ Cookies/Cookies.plist ~/Library/Cookies"

Stefan, You make me laugh because you always say “try this”.
Like it might not work - yeah right. :lol:

Thank you very much!

Tom