copy and then rename a file ?

hi from France,
i have a simple script for itunes that i would like to enhance just a bit.
The script copy files that are selected in itunes in a choosen folder.
What i would like to add to the script is renaming the new files after the copy, inside the repeat loop (this way i can access the ID3 tags of the current track).
Here is the code :

thanks for your help
Vincent

Maybe this will work.

to move_it(this_files_path, new_site)
	tell application "Finder"
		set dupe_ to duplicate file this_files_path to folder new_site with replacing
		set name of dupe_ to "whatever"
	end tell
end move_it

– Rob

that was too simple for me to find it!

i’ve learned something today, thanks for all

Vincent