I have an automation script that duplicates a template project into another folder, gives it a new name, and makes it active.
When this is finished, I would like that new project to be selected and visible in the OmniFocus window.
The Duplicate Selected Projects to New Folder plug-in I found on https://omni-automation.com creates and opens a folder URL at the end of the script:
var folderID = folder.id.primaryKey
URL.fromString("omnifocus:///folder/" + folderID).open()
I tried doing this with ‘project’ instead of ‘folder’ and the new project ID, but received an error that there were too few components in the URL.
Is there a way to do this for projects?