Last active
March 19, 2016 12:55
-
-
Save grefel/c108f81a6aef538b6a63 to your computer and use it in GitHub Desktop.
Get #InDesign version with one decimal place e.g. user folder navigation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getVersion() { | |
var version = parseFloat(app.version).toFixed (1); | |
return (version % 1 == .5) ? version : Math.floor(version).toFixed(1); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment