Choose file with multiple parameters

I want to use choose file but I don’t know how to do it outside of Xcode. How would I do the following parameters using choose file…? Thanks.

tell open panel
  set can choose files to false
  set can choose directories to true
  set allows multiple selection to false
end tell

Hi,

the plain vanilla AppleScript equivalent is

choose folder

Like StefanK said, you’re looking for the choose file and choose folder commands in StandardAdditions.

Wow. I’m stupid. I didn’t know you could use folder instead of file. Thanks!