1) So what I've spent way too much time on is figuring out how to compare strings...
I'm having a program send a specific.tif (always the same) into Photoshop.
In my "Open document" event script, I want to check for this filename and if it's the one I want a stopped action to continue.
I can get the filename, but I can't find a way to have my string comparison trials working or be seen as good code.
Code: Select all
var doc = app.activeDocument;
var docName = doc.name;
// (a.o.) this is not working...:
If (docName == "specific.tif" ) {
// continue action
}
Is there a generic instruction to just "run/continue" the action, like pressing F1...? (when that is in focus in the actions panel)
3) I normally like to have all picture formats open in Camera Raw first, but in case of an automation, I'd like to be able to skip it for that specific picture.
I believe the setting to deal with this is only in Adobe Bridge now?
So would I be able or need to first run a script (instruction) that disables this pref in Bridge, and enable at the end?
And since Bridge often isn't even opened, does that make it impossible? (or impractical)
(BTW, this is the least of my problems; I disabled ACR for .tif files at the moment. Just wondering cause it would be nice to know.)
TIA!
