The application
object has four read-only string properties:
-
build
: build number of the app, e.g. "b717
". -
frontmost
: a boolean that is onlytrue
when/if the Tinderbox app is the active/frontmost app. -
name
: the app's name as seen in Finder, e.g. "Tinderbox 10
". -
version
: the app's current version, e.g. "10.2.0
".
For instance to read the version build number of the current install:
tell application id "Cere"
set theVersion to version
end tell
or
tell application id "Cere" to set theVersion to version
These properties must be called directly from the application and not within a document tell.