property videoExtensiones : {"mkv", "mp4"}
property videoNombres : {"Hannibal", "Continuum", "Elementary"}
on adding folder items to this_folder after receiving downloaded_items
tell application "Finder"
repeat with i from 1 to number of items in downloaded_items
set archivoDescargado to item i of downloaded_items
if name extension of archivoDescargado is in videoExtensiones and name of archivoDescargado starts with videoNombres then
move archivoDescargado to folder "TV SERIES" of disk "WINOSX"
end if
end repeat
end tell
end adding folder items to