Notes formula are one of the lost arts. I am a big fan and have started to work with Notes at a time where we had no Lotus Script nor Java.
Today formula language is still very powerful. I am using it in many ways including C-API and Lotus script.
There are many @Commands for UI automation available. But there are also Lotus Script UI classes.
The really cool part of formula language is that you can use the commands in SmartIcons.
The following command selects the body text and sets the text to Default Sans Serif with 10pt.
---
@Command([EditGotoField];"Body");
@Command([EditSelectAll]);
@Command([TextSetFontFace];@GetMachineInfo ([EnvVariable];"NAMEDSTYLE1_FACE"));
@Command([TextSetFontSize]; "10");
@Command([EditDeselectAll]);
---
But there are more SmartIcons I use every day...
.
This is a companion discussion topic for the original entry at https://blog.nashcom.de/nashcomblog.nsf/dx/useful-notes-smarticons-reformat-text-is-my-favorite.htm