You are not logged in.
Pages:: 1
You should ask to the Finder about the specific creator type of such application. For example, we will ask for "GraphicConverter":
Applescript:
try
tell application "Finder" to application file id "GKON"
--> do whatever
on error --> app does not exist!!!
--> do whatever
end try
And... How do you know the creator type of a particular application? Just select its icon in the Finder and run this code:
Applescript:
tell application "Finder" to creator type of (selection as alias)
Offline
Pages:: 1