Answered
Unable to open a file with scripting in Photoshop
I'm attempting to open a file programmatically with scripting in photoshop my code is:
#target photoshop
app.preferences.rulerUnits = Units.PIXELS;
var doc_a = app.open( new File("/Users/ohms/Desktop/myfile.psd") );
I don't get an error it just doesn't do anything. I also added and try / catch block but the same no results.
