on open dropped_files
tell application "Finder"
repeat with a_file in dropped_files
set file type of a_file to "TEXT"
set creator type of a_file to "CWIE"
end repeat
end tell
display dialog "Done"
end open