Formatting gentext content forced to lowercase
Nov 17, 2014
12:05 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Nov 17, 2014
12:05 PM
Formatting gentext content forced to lowercase
Is there a non-ACL method for formatting gentext with text folded to all lower-case? I've found the counter specifier [AL], but that seems to only apply to generated counters. There is highlt, but that only allows for all caps. You can force an e-i-c to small-caps, but not lower-case. I'd rather not write an acl function to use lowercase() on the gentext savetext.
Regards,
Steve Cuzner
Product and Web Help Group
Regards,
Steve Cuzner
Product and Web Help Group
1 REPLY 1
Nov 17, 2014
03:23 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Nov 17, 2014
03:23 PM
The ACL is pretty simple:
function lc(window,oid){return tolower(oid_content(oid))}
FOSI code is:
<fillval attname="lc" attloc="SYSTEM-FUNC" fillcat="savetext"fillchar="conrule">
<charsubset><savetext textid="whatever.txt"></charsubset>
Suzanne Napoleonwww.FOSIexpert.com"WYSIWYG is last-century technology!"
function lc(window,oid){return tolower(oid_content(oid))}
FOSI code is:
<fillval attname="lc" attloc="SYSTEM-FUNC" fillcat="savetext"fillchar="conrule">
<charsubset><savetext textid="whatever.txt"></charsubset>
Suzanne Napoleonwww.FOSIexpert.com"WYSIWYG is last-century technology!"
