I need to be able to set all the invisible files in a folder to visible, preferably by dropping the folder onto an applet. I've tried this:
on open myFolder
tell application "Finder"
set visible of every file of folder myFolder to true
end tell
end
But this doesn't work. Any suggestions??