how to identify document has any timeline animation using Photoshop script?
I want to know Photoshop document has timeline animation using JSX script.
Is there any way to get this information?
I want to know Photoshop document has timeline animation using JSX script.
Is there any way to get this information?
test this )
function has_timeline()
{
try {
var r = new ActionReference();
r.putProperty(charIDToTypeID('Prpr'), stringIDToTypeID('documentTimelineSettings'));
r.putClass(stringIDToTypeID('timeline'));
try { executeActionGet(r); } catch (e) { return false; }
return true;
}
catch (e) { alert(e); }
}
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.