VCOF0007

OmniFocus: Move Task(s) to Chosen Project

This voice command will move the selected task(s) to a chosen project.

Scope and Syntax

Language: English (United States 🇺🇸 · Great Britain 🇬🇧 · Australia 🇦🇺 · Canada 🇨🇦) • Scope: OmniFocus

Command phrase variations (words in [brackets] are optional):

Requirements

Video: Move to Project
Voice command will move the selected task(s) to a chosen project.

Downloads

Voice Command Code

This command will present a form for indicating the project to move the selected task(s) into.

Move Tasks Dialog

Here’s the Omni Automation code for the command:

Move Selected Task(s) to Chosen Project


(async () => { try { function createUtterance(textToSpeak){ langCode = Speech.Voice.currentLanguageCode voiceObj = Speech.Voice.withLanguage(langCode) utterance = new Speech.Utterance(textToSpeak) utterance.voice = voiceObj utterance.rate = Speech.Utterance.defaultSpeechRate return utterance } synthesizer = new Speech.Synthesizer() selectedTasks = document.windows[0].selection.tasks if (selectedTasks.length === 0){ throw { name: "Selection Issue", message: "Please select one or more tasks to move." } } // CREATE FORM FOR GATHERING USER INPUT inputForm = new Form() // CREATE TEXT FIELD textField = new Form.Field.String( "textInput", "Search", null ) // CREATE MENU popupMenu = new Form.Field.Option( "menuItem", "Results", [], [], null ) popupMenu.allowsNull = true popupMenu.nullOptionTitle = "0 items" // ADD THE FIELDS TO THE FORM inputForm.addField(textField) inputForm.addField(popupMenu) // PRESENT THE FORM TO THE USER currentValue = null formPrompt = "Enter target project title:" // VALIDATE THE USER INPUT inputForm.validate = function(formObject){ textInput = formObject.values["textInput"] if(textInput !== currentValue){ currentValue = textInput // remove popup menu if (inputForm.fields.length === 2){ inputForm.removeField(inputForm.fields[1]) } } if(inputForm.fields.length === 1){ // search using provided string if (!textInput){searchResults = []} else { searchResults = projectsMatching(textInput) } searchResultNames = searchResults.map(item => item.name) searchResultIDs = searchResults.map(item => item.id.primaryKey) popupMenu = new Form.Field.Option( "menuItem", "Results", searchResultIDs, searchResultNames, null ) popupMenu.allowsNull = true popupMenu.nullOptionTitle = String(searchResults.length + " items") inputForm.addField(popupMenu) return false } if(!textInput){return false} if(inputForm.fields.length === 2){ menuValue = formObject.values["menuItem"] if(menuValue === undefined || String(menuValue) === "null"){return false} return true } } // PROCESSING USING THE DATA EXTRACTED FROM THE FORM utterance = createUtterance("Enter project title, then select the project in the results:") synthesizer.speakUtterance(utterance) formObject = await inputForm.show(formPrompt,"Continue") projectID = formObject.values["menuItem"] projectObj = Project.byIdentifier(projectID) projectTitle = projectObj.name moveTasks(selectedTasks, projectObj) URL.fromString("omnifocus://task/" + projectID).open() taskCountStr = selectedTasks.length.toString() taskOrTasks = (taskCountStr === "1") ? "task":"tasks" utterance = createUtterance(`${taskCountStr} ${taskOrTasks} moved to präjek: ${projectTitle}`) synthesizer.speakUtterance(utterance) } catch(err){ if(!err.causedByUserCancelling){ utterance = createUtterance(err.message) synthesizer.speakUtterance(utterance) //new Alert(err.name, err.message).show() } } })();

 

 

 

LEGAL

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Mention of third-party websites and products is for informational purposes only and constitutes neither an endorsement nor a recommendation. OMNI-AUTOMATION.COM assumes no responsibility with regard to the selection, performance or use of information or products found at third-party websites. OMNI-AUTOMATION.COM provides this only as a convenience to our users. OMNI-AUTOMATION.COM has not tested the information found on these sites and makes no representations regarding its accuracy or reliability. There are risks inherent in the use of any information or products found on the Internet, and OMNI-AUTOMATION.COM assumes no responsibility in this regard. Please understand that a third-party site is independent from OMNI-AUTOMATION.COM and that OMNI-AUTOMATION.COM has no control over the content on that website. Please contact the vendor for additional information.