Opening PSD file with specific droplet or app

Hi gang,

I’m pretty new at this, but I am attempting to create an applescripts that will open a PSD (“layertest.psd” in a folder called repository) using a specific droplet I made in Photoshop (“Drop” in a folder called droplet). All folders are on my Deskop.

The syntax error I get is “Can’t get “drop” of folder droplet. Access not allowed.”

Here is my code:

tell application “Finder”
activate

open file "layertest.psd" of folder "repository" using "drop" of folder "droplet" with writepermission

end tell

I think this should be fairly simple since the droplet is recognized under the “Open with…” menu when I right click the PSD.

Thank you for the help!