Filemaker Pro 9 (123) Flashcards
This set entered on 8-3-14
8.3.14.4
TEXT FORMATTING FUNCTIONS
- How do you replace Limited Time only with LIMITED TIME ONLY, all in RED and GEORGIA FONT?
By using a TEXT FORMATTING FUNCTIONS
- What function do you use to change the color of text?
TextColor ( First Name ; RGB ( 255 ; 0 ; 0 ) ).
This will change it to RED.
- How does FileMaker think of color?
It sees colors in RGB CODE, which defines all colors as combinations of Red, Green, and Blue, as expressed by NUMERICAL VALUES.
- What are the lowest and highest values of a color, as far as FileMaker is concerned?
0 to 255
- How do you change the FONT in a calculation result?
TextFont ( “Dewey Defeats Truman!” ; “Times New Roman” )
- What if you want to change the STYLE (font, size, italic, underline, etc)?
use TextStyleAdd and TextStyleRemove.
- What function would you use to put certain words in ITALIC?
“Do it with” & TextStyleAdd ( “style” ; Italic )
- What If you want to REMOVE italics from a field?
TextStyleRemove ( My Text Field ; Italic )
- What If you want to Bold AND Italicize a word?
TextStyleAdd ( “WARNING” ; Bold+Italic ). In this case, you just stacked up the PARAMETERS with a “+” sign.
- What if you DON’T WANT to stack up the parameters with “+” signs?
TextStyleAdd ( TextStyleAdd ( “past due” ; Plain ) ; Italic )