VCOF0107
OmniFocus: About This Task
This command will vocalize information regarding the selected task.
Scope and Syntax
Language: English (United States 🇺🇸 · Great Britain 🇬🇧 · Australia 🇦🇺 · Canada 🇨🇦) • Scope: OmniFocus
Command phrase variations (words in [brackets] are optional):
- “About This Task”
Requirements
- Application: OmniFocus 4
- System: macOS 12, iOS 15, iPadOS 15, visionOS 1.0
|
|
Installing Voice Control commands on iOS · iPadOS · visionOSWhile Apple’s mobile operating systems currently do not support the Open URL action used in the voice commands files provided on this website, you can still create and use customized Omni Automation voice commands for iPhones and iPads! To create your voice commands, we’ll use specialized Shorcuts workflows that you can “tap-to-install” from the various example pages. Simply follow these steps or view the illustrated instructions here:
You can then activate Voice Control and use your voice command to trigger the shortcut to run the Omni Automation script! Installing Siri commands on iOS · iPadOS · visionOSTo use this voice command with Siri, simply install the provided Shortcuts workflow. To trigger the command, summon Siri and say: “Hey Siri, [Name of installed Shortcuts workflow]” NOTE: After installation of the shortcut, you can rename it to whatever phrase fits your needs. |
Downloads
- ⇩ COMMANDS-FILE OmniFocus 4.0 (macOS)
- ⇩ SHORTCUT-LINK (“About This Task”) (iOS · iPadOS · visionOS)
Script Code
Here is the script code:
About This Task
(async () => {try {function createUtterance(textToSpeak){langCode = Speech.Voice.currentLanguageCodevoiceObj = Speech.Voice.withLanguage(langCode)utterance = new Speech.Utterance(textToSpeak)utterance.voice = voiceObjutterance.rate = Speech.Utterance.defaultSpeechRatereturn utterance}synthesizer = new Speech.Synthesizer()sel = document.windows[0].selection.tasksif(sel.length !== 1){throw {name: "Selection Error",message: "Please select a single task."}} else {var isTagged = falsevar isFlagged = falsevar hasDueDate = falsevar hasDeferDate = falsevar everyOtherOne = truevar tagOrTagsvar signOff = "That is all!"var fmtr = Formatter.Date.withFormat('h:mma, EEEE, LLLL d, yyyy')//--> "12:07AM, Wednesday, March 2, 2023"var utteranceStrings = new Array()objRef = sel[0]var objectType = objRef.constructor.namevar taskTitle = objRef.nameif(taskTitle === ""){string = `The selected ${objectType} is not named.`} else {string = `The selected ${objectType} is named “${taskTitle}”`}utteranceStrings.push(string)var referenceOption1 = `The ${objectType}`var referenceOption2 = `And it`console.log("objectType", objectType)var statusswitch(objRef.taskStatus) {case Task.Status.Available:status = "available"break;case Task.Status.Blocked:status = "blocked"break;case Task.Status.Completed:status = "completed"break;case Task.Status.Dropped:status = "dropped"break;case Task.Status.DueSoon:status = "due soon"break;case Task.Status.Next:status = "next"break;case Task.Status.Overdue:status = "overdue"break;}string = `and its status is “${status}.”`utteranceStrings.push(string)if(objRef.containingProject){console.log("TASK IS IN PROJECT")projectName = objRef.containingProject.nameitemReference = (everyOtherOne) ? referenceOption1:referenceOption2everyOtherOne = !everyOtherOnestring = `${itemReference} is contained in the ${projectName} project.`utteranceStrings.push(string)}if(objRef.children.length > 0){console.log("TASK IS A TASK GROUP")childCount = objRef.children.lengthcountPhrase = (childCount === 1)?"one task":String(childCount) + " tasks"itemReference = (everyOtherOne) ? referenceOption1:referenceOption2everyOtherOne = !everyOtherOneif(objRef.completedByChildren){string = `${itemReference} is a task group, containing ${countPhrase}, and is completed when its last task is finished.`} else {string = `${itemReference} is a task group, containing ${countPhrase}.`}utteranceStrings.push(string)}if(objRef.flagged){console.log("TASK IS FLAGGED")isFlagged = trueitemReference = (everyOtherOne) ? referenceOption1:referenceOption2everyOtherOne = !everyOtherOnestring = `${itemReference} has been flagged.`utteranceStrings.push(string)}if(objRef.tags.length > 0){console.log("TASK HAS ASSIGNED TAGS")isTagged = truetagCount = objRef.tags.lengthtagTitles = objRef.tags.map(tag => tag.name)if (tagCount > 1){lastTag = tagTitles.pop()var tagTitleString = tagTitles.join(", ") + `, and ${lastTag}`var tagOrTags = "tags"} else {var tagTitleString = tagTitles[0]var tagOrTags = "tag"}itemReference = (everyOtherOne) ? referenceOption1:referenceOption2everyOtherOne = !everyOtherOnestring = `${itemReference} is assigned ${tagCount} ${tagOrTags}: ${tagTitleString}`utteranceStrings.push(string)}if(objRef.dueDate !== null){console.log("TASK HAS DUE DATE")hasDueDate = truevar dueDateString = fmtr.stringFromDate(objRef.dueDate)}if(objRef.deferDate !== null){console.log("TASK HAS DEFER DATE")hasDeferDate = truevar deferDateString = fmtr.stringFromDate(objRef.deferDate)}itemReference = (everyOtherOne) ? referenceOption1:referenceOption2everyOtherOne = !everyOtherOneif (hasDueDate && !hasDeferDate){string = `${itemReference} is due on ${dueDateString}`utteranceStrings.push(string)} else if (hasDueDate && hasDeferDate){string = `${itemReference} is due on ${dueDateString}, but has been deferred until ${deferDateString}`utteranceStrings.push(string)} else if (!hasDueDate && hasDeferDate){string = `${itemReference} is deferred until ${deferDateString}`utteranceStrings.push(string)}if(objRef.estimatedMinutes){console.log("TASK HAS ESTIMATED DURATION")fmtr = new Formatter.Duration()fmtr.hoursPerDay = 24fmtr.hoursPerWeek = 168fmtr.useVerboseFormat = truedVal = Decimal.fromString(String(objRef.estimatedMinutes / 60))durationString = fmtr.stringFromDecimal(dVal)itemReference = (everyOtherOne) ? referenceOption1:referenceOption2everyOtherOne = !everyOtherOnestring = `${itemReference} has an estimated duration of ${durationString}`utteranceStrings.push(string)}if(objRef.repetitionRule){console.log("TASK IS SET TO REPEAT")ruleString = objRef.repetitionRule.ruleStringrepetitionIncrement = ruleString.split(";")[0].split("=")[1]itemReference = (everyOtherOne) ? referenceOption1:referenceOption2everyOtherOne = !everyOtherOnestring = `${itemReference} is set to repeat ${repetitionIncrement}`utteranceStrings.push(string)}utterances = new Array()utteranceStrings.forEach(str => {utteranceAppendedPause = createUtterance(str)utteranceAppendedPause.postUtteranceDelay = 0.5utterances.push(utteranceAppendedPause)})signOffUtterance = createUtterance(signOff)signOffUtterance.preUtteranceDelay = 0.5utterances.push(signOffUtterance)// DISPLAY CANCELING ALERT AND SPEAK THE UTTERANCEalert = new Alert(`${taskTitle}`, "Click “Done” to Stop.")alert.addOption("Done")//synthesizer.speakUtterance(utterance)utterances.forEach(utt => {synthesizer.speakUtterance(utt)})index = await alert.show()synthesizer.stopSpeaking(Speech.Boundary.Word)}}catch(err){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.