Hello,
I want to make a script that will prompt the user to select two files and copy them to a pre-created folder on Desktop called TEMP. After it I want them to be renamed to a name that I will define later.
This is my code until now: (pretty poor I know)
EDIT:
Btw, isn't there a way to instead of the user select the files he wants, he just drop them on a window? (whose window will check if the files are ZIP)?
I want to make a script that will prompt the user to select two files and copy them to a pre-created folder on Desktop called TEMP. After it I want them to be renamed to a name that I will define later.
This is my code until now: (pretty poor I know)
tell application "Finder"
choose file with prompt "Please select the two ZIP files:" of type {"ZIP"} with multiple selections allowed
end tell
EDIT:
Btw, isn't there a way to instead of the user select the files he wants, he just drop them on a window? (whose window will check if the files are ZIP)?