"~/Desktop/ /Filename"<br />or <br />"/Volumename/Foldername//Filename"<br />I guess. (With »« meaning: The names of the folders in sequence.) <br />But be aware that spaces and other keys might cause problems. <br /><br />Or do You mean You want to be allowed to select a file? <br />In which case I would use: <br />var theFile = File.openDialog ("open", false);<br />photoshop.open(theFile);<br /><br />And for more files one could use:<br />var theFiles = File.openDialog ("open", true);<br />for (var m=0; m<theFiles.length; m++) {<br />photoshop.open(theFiles)<br />};