txt_setvisible(TEXT*,var number);

txt_setinvisible(TEXT*,var number);

Sets a certain string of a text visible or invisible. By default all strings are visible. Invisible strings are not displayed within the text.

Parameters:

TEXT* TEXT pointer
number Index (0 .. text.strings-1) of the string to be set, or -1 for setting all strings of the text

Speed:

Fast

Example:

txt_setinvisible(my_text,-1);  // set all strings invisible
txt_setvisible(my_text,7); // except for the 8th string

See also:

TEXT