Filemaker Pro 9 (123) Flashcards

1
Q

This set entered on 8-3-14
8.3.14.4
TEXT FORMATTING FUNCTIONS

  1. How do you replace Limited Time only with LIMITED TIME ONLY, all in RED and GEORGIA FONT?
A

By using a TEXT FORMATTING FUNCTIONS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
  1. What function do you use to change the color of text?
A

TextColor ( First Name ; RGB ( 255 ; 0 ; 0 ) ).

This will change it to RED.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
  1. How does FileMaker think of color?
A

It sees colors in RGB CODE, which defines all colors as combinations of Red, Green, and Blue, as expressed by NUMERICAL VALUES.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
  1. What are the lowest and highest values of a color, as far as FileMaker is concerned?
A

0 to 255

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q
  1. How do you change the FONT in a calculation result?
A

TextFont ( “Dewey Defeats Truman!” ; “Times New Roman” )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
  1. What if you want to change the STYLE (font, size, italic, underline, etc)?
A

use TextStyleAdd and TextStyleRemove.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q
  1. What function would you use to put certain words in ITALIC?
A

“Do it with” & TextStyleAdd ( “style” ; Italic )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q
  1. What If you want to REMOVE italics from a field?
A

TextStyleRemove ( My Text Field ; Italic )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
  1. What If you want to Bold AND Italicize a word?
A

TextStyleAdd ( “WARNING” ; Bold+Italic ). In this case, you just stacked up the PARAMETERS with a “+” sign.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q
  1. What if you DON’T WANT to stack up the parameters with “+” signs?
A

TextStyleAdd ( TextStyleAdd ( “past due” ; Plain ) ; Italic )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly