September 1, 200619 yr hello how can I multi formmatting a text field? Lets say that i want to formmatting a text field field A; RGB ( 200; 30 ; 20 ) TextStyleAdd ( Album Name;Bold+Italic ) and TextSize ( field A ; 12 ) is that possible? George :qwery:
September 1, 200619 yr Yes this should be possible. Currently in one of my solutions I have a field that is formatted to bold and a larger size. You simply have to combine functions together. Here is an example. TextStyleAdd (TextSize ("your text"; 12); Bold ) This will change the text to size 12 and bold. Here's a sample for what you need. TextColor (TextSize ( TextStyleAdd ( TextStyleAdd ( "your text" ; Bold); Italic); 12) ; RGB ( 200; 30; 20) ) Hope this helps.
Create an account or sign in to comment