copy mp3 files

Hi, I would like to modify the following script so that it will only copy files with file extension “.mp3” - anyone?

tell application "Finder"
	duplicate every file in folder "HD2:sjungarna_inspelningar:210 - Picassokören:smakprov" to folder ":OSX:Users:Tobias:Dropbox:sjungarna:online:projekt:210" with replacing
end tell

Hi,

whose is your friend

set dropboxProjectFolder to (path to home folder as text) & "Dropbox:sjungarna:online:projekt:210:"
tell application "Finder"
	duplicate (every file in folder "HD2:sjungarna_inspelningar:210 - Picassokören:smakprov" whose name extension is "mp3") to folder dropboxProjectFolder with replacing
end tell

PS: An colon separated HFS path starts always with a disk name, not with a leading colon (confusion with POSIX path)

ah, thanks!