How to find locked files only?
Hi all,
quick question: is there a smart way in Bridge to only find locked items? Advanced search or filters don't seem to offer such a search.
THX!
Martin
Hi all,
quick question: is there a smart way in Bridge to only find locked items? Advanced search or filters don't seem to offer such a search.
THX!
Martin
This is not a correct answer and not helpful. OP, please ignore this.
You can use a script to identify locked files.
This is a bare-bones snippet of the logic used:
var sels = app.document.selections;
for(var i = 0; i < sels.length; i++){
if(sels[i].locked == true){
//do some action
}
}This would need to be made into an actual functioning script, with whatever action (assigning a keyword or label, for example) that you wanted.
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.