VCOF0040
OmniFocus: Total of Tasks Due Tomorrow
This Voice Control command reports the number of tasks due tomorrow.
Scope and Syntax
Language: English (United States 🇺🇸 · Great Britain 🇬🇧 · Australia 🇦🇺 · Canada 🇨🇦) • Scope: System-Wide
Command phrase variations (words in [brackets] are optional):
- “Total of Tasks Due Tomorrow”
- “How Many Tasks Are Due Tomorrow”
- “Number of Tasks Due Tomorrow”
- “Count of Tasks Due Tomorrow”
Requirements
- Application: OmniFocus 4
- System: macOS 12.3, IOS 15, iPadOS 15, visionOS 1.0
Downloads
- ⇩ COMMANDS-FILE OmniFocus 4.0 (macOS)
- ⇩ SHORTCUT-LINK (“Total of Tasks Due Tomorrow”) (iOS · iPadOS · visionOS)
Voice Command Code
Here’s the Omni Automation code for the command.
Count of Tasks Due Tomorrow
(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()
fmatr = Formatter.Date.withStyle(Formatter.Date.Style.Short)
rangeStart = fmatr.dateFromString('1 day')
rangeEnd = fmatr.dateFromString('2 days')
matches = flattenedTasks.filter(task => {
return task.dueDate > rangeStart && task.dueDate < rangeEnd
})
matches.forEach(task => {
itemID = task.id.primaryKey
itemName = task.name
link = `omnifocus:///task/${itemID}`
console.log(itemName + ":", link)
})
taskCount = matches.length
if(taskCount === 0){taskCount = "no"}
verb = (taskCount === 1) ? "is":"are"
hasHave = (taskCount === 1) ? "has":"have"
utterance = createUtterance(`There ${verb} ${taskCount} tasks due tomorrow that ${hasHave} been logged to the Automation console.` )
synthesizer.speakUtterance(utterance)
}
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.