Finder Hidden Files showing?

Hello-

Is there a way so that when I have my script ask where the file is and where to save the new files, that when the finder opens it does not show the hidden files. Currently when it opens the finder you see every file with a . in front of it. Just wondering if I need to add something so that those files do not show up in the finder when running my script. Thanks.


on run
	choose file with prompt "Hold cmd or shift for Multiple Selections" with multiple selections allowed
	processfiles(result)
end run


on processfiles(theFiles)
	--choose where to save your eps files
	set theChoice to choose folder with prompt "Choose eps file destination."
	set choicePath to theChoice as string
	--create a list of the files you are going to process
	set theFiles to theFiles as list
	repeat with aFile in theFiles
		set aFile to aFile as alias
		set dropPath to choicePath
		set dupNames to {}
		set moveToPath to dropPath
		set modTime to (current date) as string


–mamba :cool:

on run
	choose file with prompt "Hold cmd or shift for Multiple Selections" with multiple selections allowed without invisibles
	processfiles(result)
end run

Just ask that they not be displayed: “without invisibles”

wow so easy… Thanks Adam!