Recreating Mac select all then spacebar complete/uncomplete function in iOS

Hi - as title suggests… has anyone worked an automation for this? Thanks.

I am just going outside of my house. I’ll look into it when I come back.

I think that is possible but it does matter where you are in the GUI. Would you like to select all descendants of a tag ? Descendants of a project ?

Thanks - descendants of a project - ideally whilst viewed from a custom perspective showing all actions belonging to a single project. If not possible then viewed from the project itself is also useful. Thanks again.

Select a project and run the plug-in action.

Check every descendant of first selected project.omnifocusjs (800 Bytes)

Expand disclosure triangle to see "Javascript" source
/*{
	"type": "action",
	"author": "unlocked2412",
	"version": "0.1",
	"description": "A single-file plug-in.",
}*/
// Twitter: @unlocked2412
(() =>
    Object.assign(
        new PlugIn.Action(selection => {
            // OMNI JS CODE ---------------------------------------
            const omniJSContext = () => {
                const main = () => {
                    const
                        tasks = selection.projects[0].children;
                    tasks.map(
                        t => (
                            t.markComplete(),
                            t
                        )
                    )
                }

                return main()
            };

            return omniJSContext()
        }), {
            validate: selection => true
        })
)();

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.