Could anyone help how to copy one specific folder to each subfolder of another folder in applescript? Here is what I have based on Tim Joe's request.
tell application "Finder"
set _folder to choose folder
set _destination to choose folder
end tell
tell application "Finder"
set _listOfDest to (every folder of _destination) as alias list
set _subfolders to value of _listOfDest as list
set i to 1
repeat
duplicate _folder to _subfolders
set i to i + 1
end repeat
end tell
It seems to return an error "Can’t get value of {alias [...]"