Hello there. I have been trying to open 3 .jpg files from a selected folder in one Photoshop document, aligned one by one in a line. This is how I gotten so far:
It opens them in separate documents. I am trying to make it open in 1 document, arranged one by one. Any suggestions? Would be thankful
Code:
tell application "Finder"
set fileFolder to choose files with prompt "Please select your files"
set fileList to every file in fileFolder as alias list
repeat with I form 1 to number of items in fileList
set myFile to(item I of fileList)
tell application "adobe"
activate
open myFile
end tell
end repeat
end tell