Hi, I’m new to Applescripting and was trying to write an Applescript to launch a dashboard widget (which is currently not on the dashboard). Conceptually, to me it’s a 2 step process:
- Activate Dashboard
- Launch Dashboard Widget
I can accomplish the first step with this:
try
tell application "Dashboard"
activate
end tell
end try
However, I am unable to find the right syntax to launch the dashboard widget (say stickies or calculator), as it is not an application per say. I’ve searched the forums and was unsuccessful in finding a solution to this.
Any help is much appreciated. Thanks!