OK now what i want to do is create an apple script to check if file exists if it exists open it if not open a different file.
This is what i have
tell application "Finder"
try
open "Location of File 1"
on error
open "Location of File 2"
end try
end tell
The problem is apple script cant decide on error or not with an iTunes library file
This is what i have
tell application "Finder"
try
open "Location of File 1"
on error
open "Location of File 2"
end try
end tell
The problem is apple script cant decide on error or not with an iTunes library file