Launch Calculator

This could be a senior moment for me but I’m just trying to launch the calculator on Mac.

var f as folderitem = specialfolder.applications.child(“calculator.app”)
f.open

Nothing! Be kind.

This could be due to the main applications actually being in “/System/Applications”, rather than “/Applications”.

What does “f.exists” return?

Ian

Thank you. This works.

var f as folderitem = specialfolder.system.child(“Applications”)
f = f.child(“Calculator.app”)
if f.exists then
f.open
end