I am moving a lot of upper case text from PDFs to fields in Notes. There are numerous fields receiving the text. I want to change the case of the text using @ProperCase.
Since there are receiving fields through out a rather large form, I need to perform the case conversion using an action button in the toolbar of the form.
To specify where I want the converted text I am trying to use @ThisName as a variable in (what will be) a hidden field. Here is an example of what I’ve tried.
Start := @ThisName;
@Command([EditGotoField];"Holding");
@SetField("Holding";"");
@Command([EditPaste]);
@Command([EditGotoField];"Holding");
@SetField("Holding";@ProperCase(Holding));
@Command([EditGotoField];"Holding");
@Command([EditSelectAll]);
@Command([EditCopy]);
@Command([EditGotoField];"Start");
@Command([EditPaste])
“Start” is a variable for the field where I want to converted text to appear.
“Holding” is an actual field I use to perform the conversion.
The trouble starts at line 10, where I am trying to get the converted text into the field where I want it.
Any assistance will be most appreciated.