Print selection?

Alright, here’s what I got - [code]set folCheck to “/Users/Chris/Desktop/Print This/” --Makes sure that the folder to look for the files is the folder “Print This”

set wtPrint to choose file of (choose from list fList with multiple selections allowed) --wtPrint means what to print

–print time
tell application “Finder”
print wtPrint
end tell[/code]
It works, but I would like (if it can be done), just a dialog box with only that folder shown (if the user has the folder created)

When run however, it prints non stop ! I had to pull the printer plug and force quit Script Editor just to stop it :frowning:

Any help would be appriciated :slight_smile:

Alright, I got it down to something easier to understand, hope this helps someone out :confused:

tell application "Finder"
	
	set aFileToPrint to (choose from list of files in "/Users/Chris/Desktop/Print This/" with multiple selections allowed)
	
	set wtPrint to choose file of (choose from list aFileToPrint with multiple selections allowed) --wtPrint means what to print
end tell

--print time
tell application "Finder"
	print wtPrint
end tell