var filehandle_n;
STRING* strUNICODE = " ";
TEXT* testing_text =
{
pos_x = 0; pos_y = 0; red = 0; green = 0; blue = 0; layer = 99;
font = GlobalFont; string (" "); flags = FILTER | VISIBLE;
}
function testing_startup()
{
str_cpy(gString,"LoadThisString.txt");
filehandle_n = file_open_read(gString);
if (filehandle_n != 0)
{
file_str_read(filehandle_n,strUNICODE);
}
file_close(filehandle_n);
str_cpy((testing_text.pstring)[0],strUNICODE);
}