How to get the version number of Camera Raw filter
How to get the version number of Camera Raw filter, for example, if the current version number is 15.3, then display a prompt with the version number as "15.3".

How to get the version number of Camera Raw filter, for example, if the current version number is 15.3, then display a prompt with the version number as "15.3".

Thank you for your response.Actually, what I hope to do is to get the version number of the Camera Raw filter through a script, so that I can determine which version of the Camera Raw filter the system is using.
By @meadX
Yes, I understand, that is why I wrote: "JavaScript code to come"...
/*
https://community.adobe.com/t5/photoshop-ecosystem-discussions/how-to-get-the-version-number-of-camera-raw-filter/td-p/13860882
*/
var sysInfo = app.systemInformation;
var regex = /Camera Raw (\d+\.\d+\.\d+)/;
var match = sysInfo.match(regex);
var acrVers = match[0];
alert(acrVers);
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.