×

VCOF0112

OmniFocus: Note Style “Syllabus”

A set of commands for applying styling templates to the note of the selected project or task.

(OmniFocus 4 TestFlight only)

Documentation regarding the styling of note content is found on the Style class webpage of the OmniFocus section of this website.

Scope and Syntax

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

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

Requirements

Downloads

Script Code

Here is the script code for the commands:

Apply Style “Syllabus”


(async () => { try { function createUtterance(textToSpeak){ AlexID = ( (app.platformName === "macOS") ? "com.apple.speech.synthesis.voice.Alex" : "com.apple.speech.voice.Alex" ) voiceObj = Speech.Voice.withIdentifier(AlexID) voiceRate = 0.4 utterance = new Speech.Utterance(textToSpeak) utterance.voice = voiceObj utterance.rate = voiceRate return utterance } synthesizer = new Speech.Synthesizer() deviceIsPhone = (Device.current.type === DeviceType.iPhone) ? true:false sel = document.windows[0].selection items = sel.databaseObjects.filter( item => (item instanceof Project || item instanceof Task) ) if(items.length === 1){ var item = sel.databaseObjects[0] // CREATE VIRTUAL TEXT OBJECT CONTAING CURRENT NOTE var noteObj = new Text("", baseStyle) noteObj.replace(noteObj.range, item.noteText) var nStyle = noteObj.style // GET ATTRIBUTES RANGES var runRanges = noteObj.ranges(TextComponent.AttributeRuns) // PROCESS THE ATTRIBUTE RANGES runRanges.forEach(range => { runStyle = noteObj.styleForRange(range) runStyle.set(Style.Attribute.FontFamily, 'Avenir Next') typeSize = (deviceIsPhone) ? 13:14 runStyle.set(Style.Attribute.FontSize, typeSize) runStyle.set(Style.Attribute.FontStrokeColor, Color.RGB(0, 0, 0, 1)) runStyle.set(Style.Attribute.FontFillColor, Color.RGB(0.15, 0.15, 0.15, 1)) runStyle.set(Style.Attribute.UnderlineColor, Color.RGB(0, 0, 0, 1)) runStyle.set(Style.Attribute.StrikethroughColor, Color.RGB(0, 0, 0, 1)) runStyle.set(Style.Attribute.ParagraphAlignment, TextAlignment.Left) runStyle.set(Style.Attribute.ParagraphMinimumLineHeight, 19.5) runStyle.set(Style.Attribute.ParagraphSpacingBefore, 8) runStyle.set(Style.Attribute.ParagraphLineSpacing, 3.5) // TURN OFF BACKGROUND COLOR, ALPHA = 0 runStyle.set(Style.Attribute.BackgroundColor, Color.RGB(1, 1, 1, 0)) }) // REPLACE NOTE WITH VIRTUAL OBJECT item.noteText.replace(item.noteText.range, noteObj) // REVEAL NOTE tree = document.windows[0].content tree.nodeForObject(item).expandNote(false) utterance = createUtterance("Done!") synthesizer.speakUtterance(utterance) } else { throw { name: "Selection Issue", message: "Please select a single project or task." } } } 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.