getting errors "Adobe Acrobat cannot be opened" or Indesign or whatever application I am trying to open a document in.
My default way of opening documents used to be to set the file path to the document and tell the Finder to open it , kinda like double clicking on it in the finder
Tell application "Finder"
set myFile to "Macintosh HD:Users:user:desktop:my_pdf.pdf" as alias
open myFile
end tell
but that just stopped working in 12.3 (was working still in 12.1) get the error "Adobe Acrobat cannot be opened"
now I have to tell the application itself to open it and that seems to be working.
set myFile to "Macintosh HD:Users:userdesktop:my_pdf.pdf" as string
Tell application"Adobe Acrobat
open file myFile
end tell
My default way of opening documents used to be to set the file path to the document and tell the Finder to open it , kinda like double clicking on it in the finder
Tell application "Finder"
set myFile to "Macintosh HD:Users:user:desktop:my_pdf.pdf" as alias
open myFile
end tell
but that just stopped working in 12.3 (was working still in 12.1) get the error "Adobe Acrobat cannot be opened"
now I have to tell the application itself to open it and that seems to be working.
set myFile to "Macintosh HD:Users:userdesktop:my_pdf.pdf" as string
Tell application"Adobe Acrobat
open file myFile
end tell