Jay:
Thanks. With regard to templates can we upload them? I might have an relatively banal macro to post. Nothing impressive but useful for me.
Brief explanation: Catalan has a special sound where the double LL is divided into individual sounds (like in English: INTELLIGENT) This sound is called an L geminada (twin L) and it has a dot in between the 2 letters. This is represented by WP multilingual character 1,150 (for the capital letter) and 1,151 (for the small one)
I created a macro because I was fed up with having to constantly call up CRTL W
Application (A1;"WordPerfect"; Default;"FR")
Menu (MenuVar; Letter!; ; ;{"Ela geminada minuscula" ; "Ela geminada majascula"})
Switch(MenuVar)
Caseof 1: Type ("ŀl")//no descuideu d'afegir l'altra ella
Caseof 2: Type ("ĿL")//no descuideu d'afegir l' altra ella
EndSwitch
Quit
That's a very modest example of a macro I created.
xavier